Ältere Kommentare anzeigen
[x,y]=meshgrid(-6:1:6)
z=x*y
Is not giving the function z=x*y, anybody come across this issues pls?
Akzeptierte Antwort
Weitere Antworten (1)
Laura Proctor
am 22 Jun. 2011
Or, you could use matrix multiplication with vectors:
x = -6:6;
z = x'*x
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!