How to plot a 2d potential function
22 views (last 30 days)
Show older comments
MatlabEnthusiast
on 27 Feb 2019
Commented: MatlabEnthusiast
on 27 Feb 2019
Hi all. Today I came across a function f(X,Y) = cos(2*pi*X)(1+3Y) + ((2*pi*y)^2)/2.
I thought this was a 3d function but apparently it's not. How do i plot this 2D function in MATLAB.
Is there a special function for handling potential functions in MATLAB? thank you very much
0 Comments
Accepted Answer
Stephan
on 27 Feb 2019
Edited: Stephan
on 27 Feb 2019
f = @(X,Y) cos(2*pi.*X).*(1+3.*Y) + ((2*pi.*Y).^2)/2
fsurf(f)
3 Comments
More Answers (0)
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!