Save array of names

2 visualizzazioni (ultimi 30 giorni)
Nik Rocky
Nik Rocky il 22 Giu 2020
Commentato: Nik Rocky il 22 Giu 2020
Hello, I need to print a names of mesures in plot and i need an array than have a names of all measures:
name_save =
name1
name2
name3
.....
nameN
I get a new names everry loop:
for k = 1:length(l)
.....
[filepath,name,ext] = fileparts(l(k).name);
........
end
How can I save the names in a loop?
name_save(k) = name; %not working
Thank you!

Risposta accettata

madhan ravi
madhan ravi il 22 Giu 2020
name_save = compose('name%d', 1:numel(l)) ; % before loop
name_save{k} ... inside loop
  4 Commenti
madhan ravi
madhan ravi il 22 Giu 2020
part_name = regexp(name_save{k},'\d*(?=\_)','match','once')
Nik Rocky
Nik Rocky il 22 Giu 2020
Thank you friend!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by