2017-10-12 4 views

答えて

1

は、Excelが

% Read excel file and store it in a cell array 
% I've created this dummy cell array as an example 
c = {'fprintf(''Command 1\n'')', 
    'fprintf(''Command 2\n'')'}; 

% Now you can evaluate a string as a command 
for i = 1:length(c) 
    eval(c{i}) 
end 
MATLAB (Link)にファイルをインポートした後(次の操作を行うことができます
関連する問題