I keep getting undefined input error
Afficher commentaires plus anciens
Hello , im trying to make this gpa/cgpa calculator that asks the user for input , but whenever i reach the the input that requires a character it shows undifined error as shown in the screenshot :
Enter letter grade for course: A
Error using input
Undefined function or variable 'A'.
Error in Untitled11 (line 10)
Grade = input('Enter letter grade for course: ');

Réponses (1)
Mathieu NOE
le 10 Mai 2022
hello
you want to request a string not a number , so the correct code is :
Grade = input('Enter letter grade for course: ',"s");
4 commentaires
rak crak
le 10 Mai 2022
Mathieu NOE
le 10 Mai 2022
ok
this can be due to which release you are working with (I have R2020b)
so look for the help of the function and correct if needed
rak crak
le 10 Mai 2022
Cris LaPierre
le 10 Mai 2022
Modifié(e) : Cris LaPierre
le 10 Mai 2022
Try using single quotes for 's', similar to what you did for Course.
Grade = input('Enter letter grade for course: ','s');
Catégories
En savoir plus sur Testing Frameworks dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!