How can I calculate the slope of segments given the coordinates?

1 visualización (últimos 30 días)
Bruno
Bruno el 8 de En. de 2017
Respondida: Walter Roberson el 8 de En. de 2017
I did linear fit on the data, and I obtained five segments (AB, BC, CD, DE and EF) with X1 and Y1 vector (coordinates for the segments). I want to calculate the slope of each segment with the data contained in the X1 and Y1:
%slopes=(y2_y1)./(x2-x1);
for i=1:size(YI,2);
y(:,1) = YI(2,2)-YI(1,1);
end
for i=1:size(XI,2);
x(:,1) = XI(2,2)-XI(1,1);
end
slopes=y/x;

Respuestas (1)

Walter Roberson
Walter Roberson el 8 de En. de 2017
slopes = y./x;

Categorías

Más información sobre Curve Fitting Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by