Please Answer My Question
显示 更早的评论
Create a figure divided into four subplots. Sine(x), cosine(x), 𝑒−𝑥 and 𝑥3. Where x is vector from 0 to 2*pi, increasing by 0.1 The output should be:
4 个评论
Walter Roberson
2021-4-20
When you ask a question, we will try to answer it. However you have not asked a question.
mohammed khaled
2021-4-20
mohammed khaled
2021-4-20
编辑:per isakson
2021-4-20
Walter Roberson
2021-4-20
"I want a solution for this" is not a question.
Hint: subplot()
回答(1 个)
x=0:0.1:2*pi;
subplot(2,2,1); plot(x,sin(x));
subplot(2,2,2); plot(x,cos(x));
subplot(2,2,3); plot(x,exp(-x));
subplot(2,2,4); plot(x,x.^3);
类别
在 帮助中心 和 File Exchange 中查找有关 Title 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

