Info
此问题已关闭。 请重新打开它进行编辑或回答。
Need the function or Equation that solve this kind of questions?
1 次查看(过去 30 天)
显示 更早的评论
1 个评论
madhan ravi
2020-10-24
madhan ravi:
What did you try?
Dodo:
Thanks alot for your reply. I searched and found that piece wise equation can solve it but but prof needs to be plotted the graph by the logical indeing method and don't know how to apply it and so on. becuse Piesce wise made a wrong plotting. Thanks in advance,
回答(1 个)
Star Strider
2020-10-24
This is not your function, however it illustrates the ‘logical indexing’ approach:
f = @(x) (2-2*x).*(x <= 0) + (2+2*x).*(x>0);
t = linspace(-3, 3);
figure
plot(t, f(t))
grid
ylim([0 max(ylim)])
It is not difficult to figure out how it works. Be inspired by it!
3 个评论
Star Strider
2020-10-25
Walter — Thank you!
Dodo — We provide hints for homework assignments, not actual code. If you post the code you have written and are having problems with it, we will help you get it to run. We will not write it for you!
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!