Find the location of the object at times 0,1,2,. 1,000. Save the x-coordinates of the object at each time in a 1 ×1001 row vector named a11. Save t

Respuesta :

The x-coordinates of the object at each time in a 1 ×1001 row vector named a11 using coordinate.

Coordinates are distances or angles, represented by numbers, that uniquely perceive factors on surfaces of dimensions (second) or in space of 3 dimensions.

Coordinates are hard and fast values that help to expose the exact position of a factor within the coordinated aircraft.  A coordinate aircraft is a 2nd plane that's shaped by the intersection of perpendicular traces known as the x-axis and y-axis.

clear all

close all

alpha=-0.003;

w=0.05;

A=[1-alpha,-w;w,1-alpha];

A_inv=inv(A);

x0=[1;-1];

ans1=[1];

ans2=[-1];

for i=1:1000

x0=A_inv*x0;

ans1(i+1)=x0(1);

ans2(i+1)=x0(2);

end

ans1

Learn more about coordinate here:-https://brainly.com/question/17206319

#SPJ4