How to print a 3D matrix to a text file?
32 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I save the following 3D matrix in a text file using MATLAB?
Nx = 4;
Ny = 4;
Nz = 4;
x = (0:Nx-1)/Nx*2*pi;
y = (0:Ny-1)/Ny*2*pi;
z = (0:Nz-1)/Nz*2*pi;
[X,Y,Z] = meshgrid(x,y,z);
%how to save X, Y, and Z in text files?
3 commentaires
Réponse acceptée
Sailesh Kalyanapu
le 11 Oct 2022
As per my understanding, you are trying to save a 3D Matrix in a text file using MATLAB.
You could use writematrix() function to writes a homogeneous array to a comma delimited text file.
You can also refer to this MATLAB Answers post for saving a 3D matrix using MATLAB’s ‘save()’ function:
For more information on ‘writematrix’ and ‘save’ functions, please refer to the below links to their respective documentations:
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Text Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!