标签: cell-array
我正在尝试打印3x3单元字符串数组,我需要使用fprintf()。到目前为止,我有以下内容,但它没有打印出3x3:
for index=1:length(cell) fprintf('%s\n',cell{index}); end