discontinuity missing.
显示 更早的评论
Hello
This might seem a really easy question for some of you but I can't fix it.
I need to create a function M-file for the function
f(x) = 1-x if 0<=x<=1 [1] and
f(x) = -1-x if -1<=x<0 [2]
I've tried to do this with
if (x >= 0) & (x <= 1) % x is [1]
y = +1 -x;
else
y = -1 -x; % x is [2] or outside of the domain (y doesn't matter so it can be -1-x
end
However when I try to plot this function it remains just one straight line y=-1-x It is probably something really obvious that I'm missing here but I'm not really experienced with matlab.
1 个评论
Sean de Wolski
2011-4-18
Well written question; you get a vote!
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!