Matlab - Text file names from Cell array -


I have created a cell array that passes through 50 text files which I need to analyze. However, Example:


Example:

  Nickel = {'file1.txt' 'file2.txt'}; Vec = textread (nickel {1}, '% n', 'headerline', 23);  

If I input the actual file name ('file1.txt') into the treaded function, then I get the vector that I want, but it does not reference the cell can.

Thank you!


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -