Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How to output optional variables in a function call?

1 visualizzazione (ultimi 30 giorni)
yashvin
yashvin il 15 Giu 2015
Chiuso: Walter Roberson il 15 Giu 2015
Hi, I have a function where i want to either output a, b OR c given my input condition which is found in num.
I am getting an error. Output argument "b" (and maybe others) not assigned during call.
Can you please suggest a solution!
For example,
if num=2, i want to output a=10, b=5 and if num=4, i want to output c=100
if true
function [a,b,c] = trial_function(num)
if num==2
a=10; b=5
else if num==4
c=100;
end
end
end

Risposte (0)

Questa domanda è chiusa.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by