Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 G=cell(3,1)
我100 | 500在每个单元格中存储两个值。例如,每当我尝试打印该值 G(1)时,我都会得到:
100 | 500
G(1)
ans = [2x1 double]
如何显示实际的单元格内容而不是[2x1 double]?
[2x1 double]
cell2mat(G(1))
这应该可以解决您的问题。您也可以使用 cell2mat(G) 它将连接 G 中的所有矩阵(但 G 中的所有元素必须具有相同的大小)
G{1}会给你第一个单元格的内容。命令reshape([G{:}]',[],length(G))'将为您提供整个单元格的内容。
G{1}
reshape([G{:}]',[],length(G))'