How can Plot in Matlab by exported data in maple?

1 次查看(过去 30 天)
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.

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by