Regarding Deformation Processing map plot

5 ビュー (過去 30 日間)
RANJITH KUMAR I
RANJITH KUMAR I 2021 年 1 月 4 日
コメント済み: Simson Hutagalung 2022 年 6 月 24 日
Hi
I want to create surface with the 'Z' variable which is function of only 'Y' not ' X'.Here X-Temperature,Y-Strain rate,Z- strain rate sensitivity. Z'variable whhich is found out by straight line fitting.I want to create contour plot by developing surface on XY plane Z projection.Please help me with the method.
x Y Z
300 -3, -2,-1,0,1,2 0.085
350 -3, -2,-1,0,1,2 0.211
400 -3, -2,-1,0,1,2 0.270
450 -3, -2,-1,0,1,2 0.319
500 -3, -2,-1,0,1,2 0.367

回答 (1 件)

Srija Kethiri
Srija Kethiri 2022 年 1 月 25 日
From my understanding, you want to create a contour plot by developing surface on XY plane and Z projection.
The following code can be used to get the desired plot
X = [300; 350; 400; 450; 500];
Y = [-3; -2; -1; 0; 1; 2];
z = [0.085 0.211 0.270 0.319 0.367];
Z = [z;z;z;z;z;z];
contour3(X,Y,Z)
Please refer this link to know about 3D contour plots.
Hope this helps
  1 件のコメント
Simson Hutagalung
Simson Hutagalung 2022 年 6 月 24 日
How to generate deformation colormap 2D in matlab with data from excel?

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

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by