Having Trouble with My Input Argument!
이전 댓글 표시
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
Sara
2014년 7월 2일
how do you call this function?
David
2014년 7월 2일
Image Analyst
2014년 7월 2일
편집: Image Analyst
2014년 7월 2일
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
2014년 7월 2일
James Tursa
2014년 7월 2일
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
2014년 7월 2일
Image Analyst
2014년 7월 2일
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
2014년 7월 2일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!