Please Answer My Question
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Walter Roberson
il 20 Apr 2021
"I want a solution for this" is not a question.
Hint: subplot()
Risposte (1)
Carlos Guerrero García
il 13 Nov 2022
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 Commenti
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!