Index in position 1 exceeds array bounds (must not exceed 1)

2 views (last 30 days)
This is my script :
kwh=input('How much KWH this month :');
ckwh=6.6*kwh/100;
fprintf('Your charge for %5d will be %.2d',kwh,ckwh)
Matlab return this : Index in position 1 exceeds array bounds (must not exceed 1).
Help me please !!!

Answers (2)

madhan ravi
madhan ravi on 23 Sep 2019
Edited: madhan ravi on 23 Sep 2019
clear all % you're probably shadowing the inbuilt function input()\fprintf()
%or
clear input fprintf

Rémi St-Laurent
Rémi St-Laurent on 23 Sep 2019
Thank it works ahahahah

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!