Michael J. answered 04/25/16
Tutor
5
(5)
Effective High School STEM Tutor & CUNY Math Peer Leader
If you have Matlab, try writing this code exactly as it is written.
x = [1, 2, 3, 4, 5, 6, 7];
y = [26, 10, 29, 43, 38, 30, 47];
z = poly(x, y)
After you write this code, hit ENTER to get your polynomial. The polynomial will be represented as a matrix using the coefficients of the polynomial. The last coefficient in the matrix represents the constant term of the polynomial.
Armin H.
04/26/16