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

 採用された回答

Image Analyst
Image Analyst 2016 年 2 月 2 日

0 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by