Hello. I'm working on a PET system. And I need to extract information from the aquisition files names.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Duarte Guerreiro
el 21 de Jul. de 2016
Respondida: Walter Roberson
el 21 de Jul. de 2016
I have a file that is called, for example:
"13-Jul-2016_09h44_1turn_0p025s_0p9bot_0p9top_range45"
and I want to extract some information about aquisitions, like the number of turns (1turn), for example. How can I do it? Thank you for your time
0 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Jul. de 2016
name_parts = strsplit(FileName, '_');
num_turns = str2double( name_parts{3}(1) );
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre MATLAB Report Generator 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!