matlab subplot,mathematical operation

With the subplot function to draw more than one graph in the same graph window -10<x<10 for all integers in range;
Write the commands that will draw the graphs of the functions on the screen.

6 件のコメント

madhan ravi
madhan ravi 2020 年 8 月 31 日
What did you try for your homework?
Mehmet ali Karatas
Mehmet ali Karatas 2020 年 8 月 31 日
i don't know anything about this
madhan ravi
madhan ravi 2020 年 8 月 31 日
Start with MATLAB On-ramp course.
Mehmet ali Karatas
Mehmet ali Karatas 2020 年 8 月 31 日
can you link
VBBV
VBBV 2020 年 9 月 1 日
clearvars close all
X = -10:1:10; Y1 = X+2; Y2 = X.^2; Y3 = X.^3; Y4 = real(sqrt(X));
subplot(221) plot(X,Y1,'b'); subplot(222) plot(X,Y2,'b');
subplot(223) plot(X,Y3,'b'); subplot(224) plot(X,Y4,'b');

サインインしてコメントする。

回答 (0 件)

カテゴリ

タグ

質問済み:

2020 年 8 月 31 日

コメント済み:

2020 年 9 月 1 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by