Mostra commenti meno recenti
[x,y]=meshgrid(-6:1:6)
z=x*y
Is not giving the function z=x*y, anybody come across this issues pls?
Risposta accettata
Più risposte (1)
Laura Proctor
il 22 Giu 2011
Or, you could use matrix multiplication with vectors:
x = -6:6;
z = x'*x
Categorie
Scopri di più su Surface and Mesh Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!