matlab,将元胞数组转变成table,然后写入文件

cellArray是一个元胞数组,'VariableNames是新文件的标题名称

manifest_01.txt是新的文件名称

T = cell2table(cellArray,'VariableNames',{'id' 'filename' 'md5' 'size' 'state'});
    
  

  writetable(T,'manifest_01.txt');

猜你喜欢

转载自blog.csdn.net/guangjie2333/article/details/88924365