How can Plot in Matlab by exported data in maple?

조회 수: 2 (최근 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