Need to define function over two ranges of input

I have a function dependent on one input n I want the function to perform one operation for n=0, and another for n>=1 How can I do this? I'm sure this answer has already been answered elsewhere, however I am unable to find it, so if you can even link a preexisting solution online, that would be perfect. Thanks

 Accepted Answer

Try this:
function output = AssignOutput(n)
if n == 0
output = whatever....
elseif n >= 1
output = somethingElse.......
else
output = someErrorValue perhaps....
end

More Answers (0)

Community Treasure Hunt

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

Start Hunting!