how to do a contour plot using function handle?

17 ビュー (過去 30 日間)
U B
U B 2024 年 7 月 22 日
コメント済み: Star Strider 2024 年 7 月 23 日
By creating meshgrid, I can do contour plot.
T=linspace(0,2*pi,100);
d = linspace(0,2*pi,100) ;
[X,Y] = meshgrid(T,d);
M =(sin(Y).*sin(2.*X)) ;
contourf(X*(180/pi),Y*(180/pi),M)
But when I try to do it as
M = @(T,d)(sin(d).*sin(2.*T)) ;
fcontour(M)
I'm not able to get any graph. If anybody can explain to me how this works. Appriciate your help.
  3 件のコメント
U B
U B 2024 年 7 月 22 日
I'm using 2021a. But providing arguments to M, as suggested by another answer works. Thank you.
Aquatris
Aquatris 2024 年 7 月 22 日
I tried in 2019b, and just giving function to the fcontour function also works. No need to provide arguments to the M. Interesting behaviour.

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2024 年 7 月 22 日
Provide arguments to ‘M’ and it works —
T=linspace(0,2*pi,100);
d = linspace(0,2*pi,100) ;
[X,Y] = meshgrid(T,d);
M = @(T,d)(sin(d).*sin(2.*T)) ;
figure
contourf(M(X,Y))
.
  4 件のコメント
U B
U B 2024 年 7 月 23 日
I see. Thanks for expaining.
Star Strider
Star Strider 2024 年 7 月 23 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (1 件)

Muskan
Muskan 2024 年 7 月 22 日
Hi,
As per my understanding the issue occurs because because "fcontour" needs a function handle that takes two individual scalar inputs, not a single vector. So, the correct approach is to define the function handle in such a way that it matches fcontour's expected input.
You can follow the following steps to properly define and use the function handle with "fcontour":
  1. Define the function handle to take two separate inputs.
  2. Use "fcontour" with the correct function handle and specify the range for "T" and "d".
Here is a code snippet on how you can achieve the same:
% Define the function handle to take two separate inputs
M = @(T, d) sin(d).*sin(2.*T);
% Plot using fcontour
fcontour(M, [0 2*pi 0 2*pi])
xlabel('T (radians)')
ylabel('d (radians)')
title('Contour plot of sin(d) * sin(2*T)')
Kindly refer to the following documentation of "fcontour" for more information: https://www.mathworks.com/help/matlab/ref/fcontour.html
  2 件のコメント
Stephen23
Stephen23 2024 年 7 月 22 日
編集済み: Stephen23 2024 年 7 月 22 日
"As per my understanding the issue occurs because because "fcontour" needs a function handle that takes two individual scalar inputs, not a single vector. "
The FCONTOUR documentation actually states that "The function must accept two matrix input arguments and return a matrix output argument of the same size." (bold added)
The OP's code does not accept "a single vector", it accepts two matrices.
"So, the correct approach is to define the function handle in such a way that it matches fcontour's expected input."
It already does.
Muskan
Muskan 2024 年 7 月 22 日
編集済み: Muskan 2024 年 7 月 22 日
Hi, I likely missed catching that, thank you for pointing that out, that helps a lot!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by