Matlab针对Cell数组,如何进行批量处理:Cell2mat和cellstr的运用

 

ImageTime = ImageName(2:end,2);
CamTime = CamName(2:end,2);
a = cell2mat(ImageTime);
a2 = a(:,2:end);
ImageTime = cellstr(a2);

b =cell2mat(CamTime);
b2 = b(:,2:end);
CamTime = cellstr(b2);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
  • 2022-02-20
  • 2021-12-23
  • 2022-12-23
  • 2021-07-08
猜你喜欢
  • 2021-12-26
  • 2021-12-02
  • 2021-07-27
  • 2021-11-27
  • 2021-09-27
  • 2022-12-23
  • 2021-07-14
相关资源
相似解决方案