MATLAB: Input function error

#inputerror

Recently, i can't use any input function. i don't know why. Anybody could help? Thanks before
First problem:
Code: X=input('number:')
The second one:
Code: X=input('')
Usually, it always work..

Best Answer

You accidentally created a variable named input that is interfering with calling input as a function.
Related Question