필터 지우기
필터 지우기

Creating a line with "line" and obtaining the points.

조회 수: 3 (최근 30일)
Silvia
Silvia 2011년 6월 22일
Hello,
I have created a line between two points using "line" but I need to obtain the points which form that line. Is there any way to do that?? Thank you Silvia

답변 (3개)

Gerd
Gerd 2011년 6월 22일
Hi Silvia,
first of all I would create a new vector out of your two "x" values(depending on your needs/resolution). Then using, what Arturo already said, the interp1 function to get the new values.
x1=0
y0=0
x2=10;
y2=10;
invector=linspace(x1,x2,1000);
erg=interp1([x1 x2],[y1 y2], invector);
plot(invector,erg)
Now you have the interpolated values of your line.
Gerd

Jan
Jan 2011년 6월 22일
There is no need to call the slow INTERP1:
x1 = 0;
y0 = 0;
x2 = 10;
y2 = 10;
x = linspace(x1, x2, 1000);
y = linspace(y1, y2, 1000);

Silvia
Silvia 2011년 6월 22일
Thank you very much

카테고리

Help CenterFile Exchange에서 Newton-Raphson Method에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by