How to get nan as output if the function output argument is not supported?

2 Ansichten (letzte 30 Tage)
I have written a function with three outputs.
function [logical_out, run_time, reaction_time] = reaction_time_function3(~,~,~)
% code
end
I want run_time and reaction_time output to be 'NaN' if logical_out is 0. How can I do that? In fact, I have written a piece of code not to run the script further if logical_out is 0.
% do not run further calculations if logical ouput is zero
if logical_out == 0
return
end

Akzeptierte Antwort

Stephen23
Stephen23 am 21 Apr. 2022
if isequal(logical_out,0)
run_time = NaN;
reaction_time = NaN;
return
end

Weitere Antworten (1)

Matt J
Matt J am 21 Apr. 2022
if logical_out == 0
[run_time, reaction_time]=deal(nan);
return
end

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by