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!

