User defined function in for loop

9 次查看(过去 30 天)
I have created a loop to loop through a series of csv files and perform functions. The code I wrote is below:
file=('list of my files')
for i = 1:length(file)
csv = readtable(file{i});
Date=csv{1,2}
D(i,:)=Date %% I get a cell array with the dates from each file
end
The code that I wrote works but I need to transform it into a user-defined function. I have tried creating the function below. However, when I call the function I do not get the required results. Am I creating the function incorrectly?
function [csv,D] = read_function(i,file,a,b);
csv = readtable(file{i});
Date=csv{a,b};
D(i,:)=Date
end
%%% In a new window I call the function like this
file=('list of my files')
for i = 1:length(file)
a=1;
b=2;
[csv,D] = read_function(i,file,a,b);
end
  2 个评论
VBBV
VBBV 2021-12-1
Convert the csv variable to double and then pass it as function output argument. csv is table array and not double
Doron Joffe
Doron Joffe 2021-12-1
编辑:Doron Joffe 2021-12-1
Thank you very much. Would I add a line to the function which states csv=table2array(csv) ?
It still seems to give problems when i try that.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Compiler 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by