How can Plot in Matlab by exported data in maple?

5 vues (au cours des 30 derniers jours)
salim
salim le 17 Déc 2024
Commenté : salim le 20 Déc 2024
i have a matrix data from maple but How i can get 2D-3D-plots this of this data?

Réponse acceptée

Walter Roberson
Walter Roberson le 17 Déc 2024
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 commentaires
Walter Roberson
Walter Roberson le 20 Déc 2024
Sorry, I do not know anything about publication-ready plots.
salim
salim le 20 Déc 2024

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by