Filter löschen
Filter löschen

how to import matrix using load

13 Ansichten (letzte 30 Tage)
vaya putra
vaya putra am 15 Okt. 2019
hi
i want to write in "vtu file"
i have some data point and pressure
first of all i write point in matrix (30603x6) in vtu using script below
but what i have is different matrix, in vtu file
anyone give me suggestion?
filename = ( '3layer.vtu' );
load point.txt
load pressure.txt
fid = fopen (filename, 'w' );
fprintf (fid, '% 16.0f% 16.0f% 16.0f% 16.0f% 16.0f% 16.0f \ n' , point);

Akzeptierte Antwort

Raúl Ibáñez Couoh
Raúl Ibáñez Couoh am 15 Okt. 2019
You must be create a .mat file in the same diectory as your .m file and use load command to load the Example
Matrix = load('Example.mat');
This store the matrix from .mat file in the variable Matrix.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by