sum of polynomials help

조회 수: 25 (최근 30일)
Raiven Balderas
Raiven Balderas 2018년 4월 2일
답변: Walter Roberson 2018년 4월 2일
Make a Matlab function called polyadd.m that accepts as input the coefficients of two polynomials and outputs the coefficients of the sum of the two polynomials. The first line should read:
function a = polyadd(c,d)
please help

채택된 답변

Walter Roberson
Walter Roberson 2018년 4월 2일
Figure out which vector is shorter. Put enough zeros at the beginning of it to make the two the same length. Add the two, which will now be the same length.
Optionally look at the results and remove leading 0, just in case the coefficients of the two cancel out.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by