Having Trouble with My Input Argument!
Show older comments
function output=myfun(x)
x=3
if x<-2
output=-x^2;
elseif (-2<=x)&&(x<0)
output=-2*x;
elseif (0<=x)&& (x<=2)
output=2*x;
elseif x>2
output=x^2;
end
8 Comments
Sara
on 2 Jul 2014
how do you call this function?
David
on 2 Jul 2014
Image Analyst
on 2 Jul 2014
Edited: Image Analyst
on 2 Jul 2014
That did not answer here question. Again, how do you call it and what do you pass in for x? For example
>> myfun(50)
Plus, you need to split up -2<=x<0 into two tests, like you did with the elseif right after that one.
David
on 2 Jul 2014
James Tursa
on 2 Jul 2014
But clearly you must pass something in to use the function as you have it written, even if your "problem statement" doesn't explicitly state so.
David
on 2 Jul 2014
Image Analyst
on 2 Jul 2014
Even though it doesn't explicitly tell you to pass in anything, it's pretty much implicit that if you want to test your function to see if it works, you must pass in something, like Azzi's showing you, unless you just want to turn in your assignment untested (not a wise idea).
David
on 2 Jul 2014
Accepted Answer
More Answers (0)
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!