How can Plot in Matlab by exported data in maple?

1 回表示 (過去 30 日間)
salim
salim 2024 年 12 月 17 日
コメント済み: salim 2024 年 12 月 20 日
i have a matrix data from maple but How i can get 2D-3D-plots this of this data?

採用された回答

Walter Roberson
Walter Roberson 2024 年 12 月 17 日
data = load('ST1.txt');
core = reshape(data(:, 3),100,100).';
subplot(3,1,1)
surf(real(core),'edgecolor', 'none')
subplot(3,1,2)
surf(imag(core),'edgecolor', 'none')
subplot(3,1,3)
surf(abs(core),'edgecolor', 'none')
  5 件のコメント
Walter Roberson
Walter Roberson 2024 年 12 月 20 日
Sorry, I do not know anything about publication-ready plots.
salim
salim 2024 年 12 月 20 日

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

その他の回答 (0 件)

製品


リリース

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by