[x,y]=meshgrid(-6:1:6)
z=x*y
Is not giving the function z=x*y, anybody come across this issues pls?

 Réponse acceptée

Sean de Wolski
Sean de Wolski le 22 Juin 2011

1 vote

perhaps you means an element-wise multiplication?
z = x.*y;
what you're doing above is a matrix multiplication from linear algebra.

1 commentaire

petros
petros le 22 Juin 2011
my bad, ya it works thnx! :)

Connectez-vous pour commenter.

Plus de réponses (1)

Laura Proctor
Laura Proctor le 22 Juin 2011

2 votes

Or, you could use matrix multiplication with vectors:
x = -6:6;
z = x'*x

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by