Math, asked by cutekhushicute531, 1 year ago

How mathlab is working for polynomial multiplication?

Answers

Answered by gauravarduino
0

Step-by-step explanation:

Polynomial Multiplication in Matlab. The matlab function conv (convolution) can be used to perform polynomial multiplication. For example: B1 = [1 1]; % 1st row of Pascal's triangle B2 = [1 2 1]; % 2nd row of Pascal's triangle B3 = conv(B1,B2) % 3rd row % B3 = 1 3 3 1 B4 = conv(B1,B3) % 4th row % B4 = 1 4 6 4 1 % ...

Similar questions