How to plot a simple curve
281 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am trying to learn MATLAB and have stumbled straight away. Can someone please tell me how you plot y = x^2 for x = 1 to 10.
0 Commenti
Risposta accettata
the cyclist
il 5 Feb 2011
Keeping as close as possible to your notation, to be clear to you:
>> x = 1 : 0.1 : 10;
>> y = x.^2;
>> plot(x,y)
Note that the 0.1 is there to define the intervals. You'll get a smoother curve in your plot if this value is small; the vector will have correspondingly more elements.
I agree with Jiro that you will benefit from a careful read of the documents he references.
Più risposte (7)
Matt Fig
il 4 Feb 2011
Or, if you want to be able to do this for a general function (or more):
g = @(x) x.^2; % Create your function for plotting.
h = @(x) x.^2.5; %Create a second function.
x = 1:.01:10; % Create the range for the functions.
plot(x,g(x),'r',x,h(x),'b') % Use a red line for the first, blue for second.
To only plot one function:
plot(x,g(x)) % See help plot for more options.
0 Commenti
Jiro Doke
il 4 Feb 2011
Modificato: John Kelly
il 13 Nov 2013
This is a very basic question and we have many places in the documentation for you to learn:
0 Commenti
Sean de Wolski
il 4 Feb 2011
plot(1:.1:10,1:.1:10.^2)%x = 1 to 10 with spacing of 0.1
Also read the getting started documentation.
%SCd
1 Commento
Matt Fig
il 4 Feb 2011
Your code will error, Sean de. You are trying to plot different length vectors!
Erick
il 11 Set 2014
hello, how do I change my axes to have different ranges? for my graph below? and I want the curves to run from the x-axis upward to right
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175614/image.png)
2 Commenti
the cyclist
il 11 Set 2014
I suggest posting this as a new question, rather than burying as an "answer" to a 3-year-old question.
le nhat
il 18 Mag 2016
how to paint graph with data activity
1 Commento
the cyclist
il 18 Mag 2016
I suggest posting this as a new question, rather than burying as an "answer" to a 5-year-old question.
Ademolawa John
il 29 Apr 2022
hello , pls how can I plot this curve that run from top left to bottom right with Y axis running from 1 to 16 and x from 1.8 to 2.7. Thanks
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/982585/image.jpeg)
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!