Similarities between matlab and c programming??which toolbox to use?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
UTKARSH SINGH
am 19 Okt. 2014
Kommentiert: Zoltán Csáti
am 21 Okt. 2014
like in C programming,we can provide a method to take input from user until certain value tends to a limit,is it possible like that in matlab, where we can accept real time input from users and terminate or limit the method until a threshold value is reached...which toolbox do i need to use for it? another question-can i simultaneously use two or more toolboxes in a single program?
0 Kommentare
Akzeptierte Antwort
Zoltán Csáti
am 20 Okt. 2014
For the first question: core MATLAB is enough. The syntax (with an example) is:
correctAnswer = false;
while ~correctAnswer % reiterate until the right answer is provided
% put your function here, e.g.
output = input(description, 's');
if isa(output, 'double')
correctAnswer = true;
else
error('Wrong type is given.');
end
end
For the second question: you can use the functions of all toolboxes in a single program.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!