How can i make a graph only with numerical values?

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

답변 (2개)

Naz
Naz 2011년 10월 25일

1 개 추천

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')
Walter Roberson
Walter Roberson 2011년 10월 25일

0 개 추천

Perhaps a 2D spline would be appropriate for this situation.

카테고리

도움말 센터File Exchange에서 Just for fun에 대해 자세히 알아보기

질문:

2011년 10월 25일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by