Why Input function error?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
David Biwono
el 3 de Oct. de 2019
Comentada: David Biwono
el 4 de Oct. de 2019
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..
0 comentarios
Respuesta aceptada
Walter Roberson
el 3 de Oct. de 2019
You accidentally created a variable named input that is interfering with calling input as a function.
3 comentarios
Walter Roberson
el 3 de Oct. de 2019
clear input
After that check your code to see if you assign anything to a variable named input and if so rename that variable.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!