Color plot for material properties?

1 回表示 (過去 30 日間)
Nguyen Van Hieu
Nguyen Van Hieu 2021 年 3 月 20 日
編集済み: Image Analyst 2021 年 3 月 20 日
Could you kindly recomment a matlab function to plot the color map for a meshed plate for me please! I mean I now the coordinate and the value of E, how can I plot the plates like other FEM software? The coordinate is 7x7 but the E matrix is 6x6.
Thank you so much!

採用された回答

KSSV
KSSV 2021 年 3 月 20 日
Read about patch, you can provide nodal connectivity data and plot the required.
Also you can do iinterpolation from element center to nodes and use pcolor.
  1 件のコメント
Nguyen Van Hieu
Nguyen Van Hieu 2021 年 3 月 20 日
Thank you so much!

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 3 月 20 日
You can use imshow() with the 'InitialMagnification' option set to ten thousand. Then set a colormap
yourMatrix = rand(7)
cmap = jet(256);
imshow(yourMatrix, 'InitialMagnification', 10000, 'Colormap', cmap);
colorbar

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by