0 1897655143 0123456789 2468 – 1, 3, 5, 7, 9, 0 1: 2 3 4 Show transcribed image text 0 1897655143 0123456789
2468 – 1, 3, 5, 7, 9, 0 1: 2 3 4
Answer
`Hey,
Note: Brother in case of any queries, just comment inbox I would be very happy to assist all your queries
clc
clear all
x=0:1:9;
y=[10,8,9,7,6,5,5,1,4,3];
C=polyfit(x,y,1);
xx=0:0.01:9;
yy=polyval(C,xx);
plot(xx,yy,x,y,’or’);
Kindly revert
OR
OR