フィルターのクリア

Please Answer My Question

1 回表示 (過去 30 日間)
mohammed khaled
mohammed khaled 2021 年 4 月 20 日
回答済み: Carlos Guerrero García 2022 年 11 月 13 日
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 件のコメント
mohammed khaled
mohammed khaled 2021 年 4 月 20 日
編集済み: per isakson 2021 年 4 月 20 日
Walter Roberson
Walter Roberson 2021 年 4 月 20 日

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

回答 (1 件)

Carlos Guerrero García
Carlos Guerrero García 2022 年 11 月 13 日
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);

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by