How can I use following code to select .txt files instead of .m file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Manav Divekar
el 18 de Oct. de 2021
Comentada: Yongjian Feng
el 18 de Oct. de 2021
[files,path] = uigetfile('MultiSelect', 'on');
if iscell(files)
for n = 1:length(files)
data = importdata(fullfile(path,files{n})); % fullfile including path
% save data
end
else
data = importdata(fullfile(path,files));
% save data
end
0 comentarios
Respuesta aceptada
Yongjian Feng
el 18 de Oct. de 2021
```
[file,path] = uigetfile({'*.m';'*.slx';'*.mat';'*.*'},...
'File Selector');
```
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matched Filter and Ambiguity Function 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!