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

2 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Stephen23
Stephen23 le 21 Avr 2022
if isequal(logical_out,0)
run_time = NaN;
reaction_time = NaN;
return
end

Plus de réponses (1)

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

Catégories

En savoir plus sur Function Creation dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by