How can I give user defined Yes No for multiple set of code?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
RAHUL KUMAR
am 7 Sep. 2018
Beantwortet: Dennis
am 7 Sep. 2018
%Enter Initial coordinates as Matrix for triangle u = input('Enter the triangle Matrix:\n');
%Enter Initial coordinates as Matrix for quadrilateral u = input('Enter the quadrilateral Matrix:\n');
For these two, I want to create a Yes/No command. For case one if a user gives yes then ask for traingle matrix. If no then ask the user for second case which is quadrilateral matrix. I don't want infinite loop. Please help?
0 Kommentare
Akzeptierte Antwort
Dennis
am 7 Sep. 2018
a=input('Do you like triangles? Y/N','s');
if strcmpi(a,'y')
%triangles
elseif strcmpi(a,'n')
%no triangles
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!