Plotting 3 graphs in the same figure
显示 更早的评论
Write a programme to plot the function f(x)=xsin(pi(9x+1)) over the interval [−1, 1] using increments in x of (a) 0.2, (b) 0.1, and (c) 0.01. The programme should plot the three graphs in the same figure. Include the legend to specify which graph corresponds to which increment. (Observe that the plots for cases (a) and (b) givetotally the wrong picture of ݂f(x)).
Could someone help me?
x = linspace(0.2:0.1:0.01);
y = x*sin(pi*(9*x+1));
y=[-1:1]
figure
plot(x,y)
3 个评论
darova
2020-2-26
Can you show your attempts? Where are problems?
darova
2020-2-26
Yes. I found some mistakes

Image Analyst
2020-3-9
Anastasia: Did David's solution below work for you? If so, please Accept it.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!