フィルターのクリア

How can i 3d plot this table in matlab?

5 ビュー (過去 30 日間)
Ali Moosazadeh
Ali Moosazadeh 2024 年 2 月 18 日
コメント済み: Star Strider 2024 年 2 月 18 日
I want to 3d plot this table in matlab.if any one can send me the code i will be appreciated.

採用された回答

Star Strider
Star Strider 2024 年 2 月 18 日
Try this —
A1 = readmatrix('cc.csv');
x = A1(1,2:end);
y = A1(2:end,1);
z = A1(2:end,2:end);
figure
surf(x,y,z, 'EdgeColor','none')
colormap(turbo)
xlabel('X')
ylabel('Y')
zlabel('Z')
colorbar
.
  2 件のコメント
Ali Moosazadeh
Ali Moosazadeh 2024 年 2 月 18 日
Thanks
Star Strider
Star Strider 2024 年 2 月 18 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

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