z=xy
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
[x,y]=meshgrid(-6:1:6)
z=x*y
Is not giving the function z=x*y, anybody come across this issues pls?
0 commentaires
Réponse acceptée
Sean de Wolski
le 22 Juin 2011
perhaps you means an element-wise multiplication?
z = x.*y;
what you're doing above is a matrix multiplication from linear algebra.
Plus de réponses (1)
Laura Proctor
le 22 Juin 2011
Or, you could use matrix multiplication with vectors:
x = -6:6;
z = x'*x
0 commentaires
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!