How do i extract values from a name-value pair argument?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
AUWAL ABUBAKAR
el 2 de Abr. de 2018
Comentada: AUWAL ABUBAKAR
el 3 de Abr. de 2018
Can someone help me on this please. my function is this; fid=fopen('20160613.XVI'); C=textscan(fid,'%s%s','CollectOutput',true,'Delimiter',';'); data=C{1}(71:73,1); [~]=fclose(fid);
It returns the following; {'CouchShiftLat=-0.17' } {'CouchShiftLong=-0.08' } {'CouchShiftHeight=-0.09'} But i needed only the values; -0.17,-0.08 and -0.09.
3 comentarios
Respuesta aceptada
KSSV
el 2 de Abr. de 2018
files = dir('*.txt') ; % Get all text files of the folder
N = length(files) ; % Total files
% loop for each file
for i = 1:N
file = files(i).name ;
% do what you want
end
3 comentarios
Stephen23
el 2 de Abr. de 2018
Editada: Stephen23
el 2 de Abr. de 2018
Más respuestas (0)
Ver también
Categorías
Más información sobre Text Files 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!