尝试读取 txt 文件,然后遍历 txt 文件的所有字符串。不幸的是没有让它工作。
fid = fopen(fullfile(source_dir, '1.txt'),'r')
read_current_item_cells = textscan(fid,'%s')
read_current_item = cell2mat(read_current_item_cells);
for i=1:length(read_current_item)
current_stock = read_current_item(i,1);
current_url = sprintf('http:/www.', current_item)
.....
我基本上尝试将单元格数组转换为矩阵,因为 textscan 输出单元格数组。但是现在我收到了消息
使用 cell2mat 时出错(第 53 行)无法支持包含元胞数组或对象的元胞数组。
很感谢任何形式的帮助