How to get a one function result?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Akash Pal
il 6 Mag 2022
Commentato: Walter Roberson
il 9 Mag 2022
I have a main function called mainfun
function [out1,out2]=mainfun(input)
[out1]=fun1(input);
[out2]=fun2(input);
end
so my question is ,may be i am calling my mainfun,and I want to display the individual result from different sub function,but how to display if there is any error in one subfunction ?
like an example ,
if in my fun1 there is eroor then also i want to get the fun2 result .
0 Commenti
Risposta accettata
Walter Roberson
il 9 Mag 2022
You can create a helper function
function varargout = safe(fcn, varargin)
try
[varargout{}] = fcn(varargin{:}) ;
catch ME:
varargout(:) = {nan};
end
With that you can
[out1] = safe(@fun1,input);
[out2] = safe(@fun2,input);
4 Commenti
Walter Roberson
il 9 Mag 2022
function varargout = safe(fcn, varargin)
try
[varargout{1:nargout}] = fcn(varargin{:}) ;
catch ME:
varargout(1:nargout) = {nan};
end
Più risposte (1)
David Hill
il 6 Mag 2022
function [out1,out2]=mainfun(input)
out1=nan;out2=nan;
try [out1]=fun1(input);
end
try [out2]=fun2(input);
end
2 Commenti
Walter Roberson
il 9 Mag 2022
You should initialize any output variable that might otherwise not be assigned to because of errors.
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!