Create a different output for every document that is imported

1 次查看(过去 30 天)
Hey, I got a function that imports all the text documents from a file and creates a variable with all of them. What I wanted is to get a variable for each document. Here is the code:
dades = [];
for i=0:1:23
%x=sprintf('%00d',i)
fname = '2021030100'+string(sprintf('%00d',i))+'AIS.txt';
temp = importfileAIS(fname)';
dades = [dades', temp]';
end
How could I do it. I know that all the files go to the same variable(dades) because I wrote it, but I do not know how to write what I asked.
  3 个评论
darova
darova 2021-9-19
编辑:darova 2021-9-19
Why don't just create a matrix? Each column is a variable
dades = [dades temp(:)];

请先登录,再进行评论。

采纳的回答

Harikrishnan Balachandran Nair
Hi,
I understand that you are trying to read data from a file and store it in a variable. The 'importdata' function in matlab can be used to load the data from the text file into an array in matlab.
To store the data loaded from the file in each iteration , you can add each column that you have imported as the new column in your output matrix. If the loaded data in each iteration is of different sizes, you may store the data in a cell array. You can easily access the imported data by indexing the corresponding element.
If you must create a new variable in each iteration, you can use the 'eval' function. You can refer to the following similar answer to get a better idea on it.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by