Try and Catch for multiple conditions
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jason
am 6 Apr. 2022
Bearbeitet: Les Beckham
am 6 Apr. 2022
Hello. If I have say 10 conditions and each one may fail, rather than have a try and catch round each condition, is there a better way where if condtion 1 isnt met, it ignores it and moves onto condition2?
0 Kommentare
Akzeptierte Antwort
Les Beckham
am 6 Apr. 2022
Bearbeitet: Les Beckham
am 6 Apr. 2022
Maybe something like this:
if isfield(src, 'DeviceName')
Name = src.DeviceName;
else
Name = 'unknown'; % or, just don't set the Name (leave off the else part)
end
if isfield(src, 'Model')
Model = src.Model;
else
Model = 'unknown';
end
% and so on...
0 Kommentare
Weitere Antworten (1)
David Hill
am 6 Apr. 2022
if condition1
%do
elseif condition2
%do
elseif condition3
%do
elseif condition4
%do
elseif condition5
%do
elseif condition6
%do
end
1 Kommentar
Siehe auch
Kategorien
Mehr zu GigE Vision Hardware 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!