Please Answer My Question
์กฐํ ์: 1 (์ต๊ทผ 30์ผ)
์ด์ ๋๊ธ ํ์
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์ผ
"I want a solution for this" is not a question.
Hint: subplot()
๋ต๋ณ (1๊ฐ)
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);
๋๊ธ ์: 0
์ฐธ๊ณ ํญ๋ชฉ
์นดํ ๊ณ ๋ฆฌ
Help Center ๋ฐ File Exchange์์ Subplots์ ๋ํด ์์ธํ ์์๋ณด๊ธฐ
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!