Effacer les filtres
Effacer les filtres

POLYNOMIAL TO MATRIX CONVERSION

8 vues (au cours des 30 derniers jours)
huriya maheen
huriya maheen le 29 Fév 2016
suppose we have two polynomials
s0 =h0(x0-x2)-h1x1,
s1 =h0x1+h1(x0-x2)
these two polynomials require 4 multiplications this is reduced to 3 multiplications by writing these equations in matrix form shown below:
can u tell me how to write polynomial into these matrices and code for it in MATLAB

Réponses (1)

Srivardhan
Srivardhan le 31 Mai 2023
Hi Huriya,
As per my understanding, you would like to write the given polynomials in the matrix form.
MATLAB represents polynomials as numeric vectors, assuming h0, h1, x0, x1, x2, s0, and s1 as symbolic scalar variables. We could define the polynomial in other forms and represent the polynomial in the matrix form.
syms x0 x1 x2 h0 h1 s0 s1
s = [[1 0 -1]; [1 -1 0]]*[[h0 0 0];[0 h0-h1 0];[0 0 h0+h1]]*[x0+x1- x2;x0-x2;x1];
s0 = s(1);
s1 = s(2);
disp(s0)
disp(s1)
For further reference, please check out the links to learn more about polynomial functions and symbolic scalar variables:
I hope this resolves the issue you were facing.

Catégories

En savoir plus sur Polynomials dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by