Reading mat or ascii files
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello. I have a strange problem. I am reading two types of files '-ascii' and '-mat' but the load function must be set to one of them but I don't know what tpye of file is currently reading. My question is how to write a code so it will be work for both types of files.
0 comentarios
Respuesta aceptada
Jan
el 7 de Oct. de 2013
if exist(File, 'file') == 0
error('File does not exist: %s', File);
end
try
Data = load(File, '-MAT');
catch
Data = load(File, '-ASCII');
end
0 comentarios
Más respuestas (1)
dpb
el 7 de Oct. de 2013
Editada: dpb
el 7 de Oct. de 2013
Simplest would be if your application that created the files were consistent in naming them such that the .mat extension were to be used only for .mat files and did invariably do so--then simply load filename w/o worrying about the type switch would automagically do "the right stuff".
If you can't do the obvious and expedient, you can build a function that looks at the file with whos -- sotoo
function ismat = ismatfile(fn)
% return logical T if fn is mat-file, F otherwise
try
ismat=~isempty(whos('-file',fn));
catch
ismat=false;
end
end
Above assumes the file does exist; may want to wrap in that test as well depending on your usage.
But, I still think the first suggestion is the better altho this can account for users who don't play by the rules.
1 comentario
Jan
el 7 de Oct. de 2013
+1: Yes, of course. The best solution to manage the confused file formats is to avoid the confusion by providing different file extensions.
Ver también
Categorías
Más información sobre Variables en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!