![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/360544/image.png)
Making a parabola and plotting
160 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nicholas Deosaran
il 15 Set 2020
Risposto: Ameer Hamza
il 15 Set 2020
how can you make a parabola (is it not y = ax^2)? and plot it.
Also how to overlay two more parabolas on the same axes using 0.5a and 2a
0 Commenti
Risposta accettata
Ameer Hamza
il 15 Set 2020
You need to use hold() to plot multiple lines on one axes
x = linspace(-5, 5, 100);
y1 = 0.5*x.^2;
y2 = 2*x.^2;
f = figure();
ax = axes();
hold(ax); % to plot multiple lines on one axes
plot(x, y1);
plot(x, y2);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/360544/image.png)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Lighting, Transparency, and Shading 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!