How do at write the equation

1 vue (au cours des 30 derniers jours)
Anna Nordin
Anna Nordin le 3 Sep 2019
Commenté : Torsten le 3 Sep 2019
How do I make this equation work for a vector? (the vector x=[-1:0.1:1])
f = x 2 sin(πx)
I've tried the following:
f=x.^2*sin(x.*pi)
f=x.^2*sin(x*pi)
It doesn't work.

Réponse acceptée

Torsten
Torsten le 3 Sep 2019
f = x.^2.*sin(x*pi)
  2 commentaires
Anna Nordin
Anna Nordin le 3 Sep 2019
Thank you!
I thought you only had to pun "." after the x
Torsten
Torsten le 3 Sep 2019
No. As soon as you multiply vectors elementwise, you have to use the ".*", "./", ".^" operators.
x.^2 is a vector, sin(pi*x) is a vector. To multiply them elementwise, you have to use ".*" .

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB 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