how to append different arrays without normalization?

1 次查看(过去 30 天)
i have four arrays of different values and i have to append the arrays one after other vertically in a single array. i have tried this code
data=[i;j;blksz;avg]
but the problem i am facing is that values above 255 in array i and j are automatically normalized to 255. can anyone let me know how to fix it???
  1 个评论
Stephen23
Stephen23 2018-9-14
编辑:Stephen23 2018-9-14
The values are being converted to the class of the first array, which appears to be uint8. How these conversions work is explained in the MATLAB documentation:

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2018-9-14
编辑:Stephen23 2018-9-14
data = [double(i);double(j);double(blksz);double(avg)]
or using some suitable integer class which can contain the required values.

更多回答(1 个)

Walter Roberson
Walter Roberson 2018-9-14
data = [double(i); double(j); double(blksz); double(avg)];
I suspect this could be shortened to
data = [i; j; blksz; double(avg)];

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by