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

 Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by