Write a for loop that converts the Data (Data.data) in the text file into matrix of 13 by 31 or 31 by 13.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tunde Adubi
el 12 de Abr. de 2022
Comentada: DGM
el 12 de Abr. de 2022
The data should be imported and converted into a matrix of 13 x 31.
0 comentarios
Respuesta aceptada
DGM
el 12 de Abr. de 2022
This should be one way:
alltext = split(fileread('Textfile.txt'),newline);
allnums = regexp(alltext(1:end-1),'(?<=:\s*)[+-E\d]+','match');
allnums = cellfun(@str2double,allnums);
allnums = reshape(allnums,13,[])
2 comentarios
DGM
el 12 de Abr. de 2022
for k = 1
alltext = split(fileread('Textfile.txt'),newline);
allnums = regexp(alltext(1:end-1),'(?<=:\s*)[+-E\d]+','match');
allnums = cellfun(@str2double,allnums);
allnums = reshape(allnums,13,[])
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!