Load matrix from .mat files

3 visualizaciones (últimos 30 días)
Andrea Togni
Andrea Togni el 14 de Oct. de 2021
Comentada: Mathieu NOE el 19 de Nov. de 2021
Hi,
I've got ten .mat files (P0.mat,P1.mat,P2.mat,ecc) in each of them I have a 256 * 10 matrix, I want to read them and create a single 256 * 100 matrix, how can I do?
Thanks
Andrea

Respuestas (1)

Mathieu NOE
Mathieu NOE el 14 de Oct. de 2021
hello
try this :
data_all = [];
for ci = 1:10
filename = ['P' num2str(ci-1) '.mat'];
data = load(filename);
data_all = [data_all data]; % horizontal concatenation
end
  3 comentarios
Mathieu NOE
Mathieu NOE el 5 de Nov. de 2021
hello
do you mind accepting my answer ?
tx
Mathieu NOE
Mathieu NOE el 19 de Nov. de 2021
hello
how is it going ?
problem solved ?
all the best

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by