How can i make a graph only with numerical values?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello. I wonder if i can make a graph without any function about my data. I only have numerical values.
For example,
(x,y)=(1,3), (2,4), (5, 6)...
Value y is not a function of x.
In this situation, how can i draw a graph? Help me ! T.T
0 Kommentare
Antworten (2)
Naz
am 25 Okt. 2011
x=[1 2 3]; % or x=1:3
y=[3 4 6];
plot(x,y);
it will plot a sequence of points. If you dont want them to be connected, you can set some parameters, for example:
plot(x,y,'o');
You can further simplify to:
plot(y,'o')
0 Kommentare
Walter Roberson
am 25 Okt. 2011
Perhaps a 2D spline would be appropriate for this situation.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!