Effacer les filtres
Effacer les filtres

Polynomial as product of two vectors

3 vues (au cours des 30 derniers jours)
Aleem Andrew
Aleem Andrew le 11 Nov 2020
Commenté : Aleem Andrew le 11 Nov 2020
I am trying to display a polynomial as the product of two vectors.
a = [1 2 3 4 ];
syms x
f = [x,x^3,x,x^3]';
a.*f
The output should be x + 2x^3 + 3x +4x^3 but instead a number of vectors are output and f(x) is output as conj(f(x)). Writing instead a*f results in the correct output but f(x) is still displayed as conj(f(x)). Can someone explain how this issue can be fixed?

Réponse acceptée

Bruno Luong
Bruno Luong le 11 Nov 2020
Try this
a = [1 2 3 4 ];
syms x
f = [x,x^3,x,x^3].';
a*f
  1 commentaire
Aleem Andrew
Aleem Andrew le 11 Nov 2020
Thanks for your answer

Connectez-vous pour commenter.

Plus de réponses (0)

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