Choose numerical type for table2array output

조회 수: 3 (최근 30일)
Felipe Arteaga
Felipe Arteaga 2020년 5월 28일
답변: Ameer Hamza 2020년 5월 28일
Is there any one-command way to convert a table that holds different numeric types variables and decide the precision of the final array?
In this small example, with one double and one uint8 variable, the final array is uint8, and I want it to be double (so I do not lose information in the variable with 1000s)
T=table;
T.var1=ones(10,1,'uint8');
T.var2=1000*ones(10,1,'double');
array=table2array(T)

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 5월 28일
Seomthing like this
T=table;
T.var1=ones(10,1,'uint8');
T.var2=1000*ones(10,1,'double');
array = structfun(@double, table2struct(T, 'ToScalar', true), 'uni', 0);
array = struct2array(array);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by