I can't graph multivariable function that contains cos function doens't work
Ältere Kommentare anzeigen
I'm trying to graph f(x,y)=(e^x )* cos(y)
By using ulframalpha, I found that the graph should look like this.

>> x=[-4*pi:0.1:4*pi];
>> y=[-4*pi:0.1:4*pi];
>> [X,Y]=meshgrid(x,y);
>> Z=exp(X)*cos(Y);
>> surf(X,Y,Z)
My code look like this, and the result keep shows me this, flat plane.

I changed range for several times, but I don't think that range is not problem.
Can you see any problem in my code?
Any help would be aprreciated.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Directed Graphs 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!