我有一个结构,我想将其更改为矩阵。所以我得到了cell2mat(struct2cell(d))
。但struct2cell(d)
给了我
6×1 cell array
{1100×1 int32 }
{1100×1 int32 }
{1100×1 int32 }
{1100×1 int32 }
{1100×1 double}
{1100×1 double}
和cell2mat(struct2cell(d))
给我错误:
输入单元阵列的所有内容必须具有相同的数据类型。
所以我的问题是如何将所有这些转换为双倍?或者我怎么能最终得到一个矩阵?
您可以使用cellfun
(基本上是隐藏的for循环)来转换单元格的每个元素:
%Dummy data
s.a = int16([1:4])
s.b = linspace(0,1,4)
%struct -> mat
res = struct2cell(s);
res = cellfun(@double,res,'UniformOutput',0) %cast data type to double
res = cell2mat(res)
您可以使用structfun
循环遍历结构中的所有字段,并首先将它们转换为double
。然后你可以在修改后的结构上使用cell2mat
和struct2cell
。或者,您可以直接从structfun
获取单元格数组,并简单地将这些单元格内容连接到一个数组中:
>> s = struct('a', int32(1:10).', 'b', pi.*ones(10, 1)); % Sample data
>> mat = cell2mat(structfun(@(v) {double(v)}, s).');
mat =
1.000000000000000 3.141592653589793
2.000000000000000 3.141592653589793
3.000000000000000 3.141592653589793
4.000000000000000 3.141592653589793
5.000000000000000 3.141592653589793
6.000000000000000 3.141592653589793
7.000000000000000 3.141592653589793
8.000000000000000 3.141592653589793
9.000000000000000 3.141592653589793
10.000000000000000 3.141592653589793
我们可以做一个简单的循环......
f = fieldnames( d );
nf = numel( f );
output = cell( nf, 1 );
for ii = 1:nf
output{ii} = double( d.(f{ii}) );
end
output = [output{:}];