How to plot 3_D graph of function K*exp(-r^2/R^2) where "r" is the radial cordinate and "R" is the variation of R along the thickness

2 ビュー (過去 30 日間)
ALOK
ALOK 2023 年 4 月 26 日
コメント済み: ALOK 2023 年 4 月 27 日
  5 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 4 月 26 日
Is this the output you want to achieve?
d=0.0035;
R=0.0019;
r=0.004;
q=1200;
f=@(y) (R-(((R-r).*(d-y))./d));%{where re is R, and r is the ri}
Qfun=@(x,y) q.*exp(-(x.^2+y.^2)./f(y).^2);
Qhandle = fsurf(Qfun,[-5 5 -5 5]);

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

回答 (1 件)

Ganapathi Subramanian
Ganapathi Subramanian 2023 年 4 月 26 日
編集済み: Ganapathi Subramanian 2023 年 4 月 26 日
Hi Alok,
It is my understanding that you want to plot a 3D graph for the given function. Use ‘fsurf’ function to plot 3D graph for the given variables ‘r’ and ‘R’ and the function.
fsurf(@(r,R) f)
% where r,R are the variables and f is the function.
Please refer to the documentation for more information regarding ‘fsurf’

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by