Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How to output optional variables in a function call?

1 view (last 30 days)
yashvin
yashvin on 15 Jun 2015
Closed: Walter Roberson on 15 Jun 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

Answers (0)

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!