MATLAB: Calculation the coordinate of a point

coordinateponit

If the distance and angle between two points is known and the coordinate one of two points is also known , how could I calculate the coordinate of second point ? .

Best Answer

Mick,
x2 = x1 + d*cos(al);
y2 = y1 + d*sin(al);
where d is the distance and al is the angle in rad measured between the x-axis and the line defined by the two points.
Related Question