如何将由int 32和double组成的单元格数组更改为双精度矩阵?

问题描述 投票:1回答:3

我有一个结构,我想将其更改为矩阵。所以我得到了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))给我错误:

输入单元阵列的所有内容必须具有相同的数据类型。

所以我的问题是如何将所有这些转换为双倍?或者我怎么能最终得到一个矩阵?

matlab double cell int32
3个回答
4
投票

您可以使用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)

2
投票

您可以使用structfun循环遍历结构中的所有字段,并首先将它们转换为double。然后你可以在修改后的结构上使用cell2matstruct2cell。或者,您可以直接从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

1
投票

我们可以做一个简单的循环......

f = fieldnames( d );
nf = numel( f );
output = cell( nf, 1 );
for ii = 1:nf
    output{ii} = double( d.(f{ii}) );
end
output = [output{:}];
© www.soinside.com 2019 - 2024. All rights reserved.