Determining the 4th degree polynomial
조회 수: 3 (최근 30일)
이전 댓글 표시
I need help about determine the 4th degree polynomial y(x) that passes through the following points:
(0,−1), (1, 1), (3, 3), (5, 2) and (6,−2).
댓글 수: 0
채택된 답변
Walter Roberson
2018년 12월 30일
편집: Walter Roberson
2018년 12월 30일
polyfit([0 1 3 5 6], [-1 1 3 2 -2], 4)
If you need symbolic form you could poly2sym() the result of the above.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!