How to plot a 2d potential function

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

 采纳的回答

Stephan
Stephan 2019-2-27
编辑:Stephan 2019-2-27
f = @(X,Y) cos(2*pi.*X).*(1+3.*Y) + ((2*pi.*Y).^2)/2
fsurf(f)
func_sirf.PNG

3 个评论

so it indeed is 3d, right? does that mean the script had an error when it said 2d plot of the potential function?
thanks for the answer btw
Yes, you have independent 2 input variables and a resulting value which is usually shown in the 3rd dimension. But of course you also can show this in 2D by using:
fcontour(f)
This results in:
If this answer was helpful, please accept it.
yes. this is very helpful

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Graphics Performance 的更多信息

产品

版本

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by