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

 Respuesta aceptada

Image Analyst
Image Analyst el 2 de Feb. de 2016
Try this:
function output = AssignOutput(n)
if n == 0
output = whatever....
elseif n >= 1
output = somethingElse.......
else
output = someErrorValue perhaps....
end

Más respuestas (0)

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 2 de Feb. de 2016

Comentada:

el 2 de Feb. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by