how to append different arrays without normalization?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anu Sri
el 14 de Sept. de 2018
Comentada: Anu Sri
el 14 de Sept. de 2018
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 comentario
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 14 de Sept. de 2018
data = [double(i); double(j); double(blksz); double(avg)];
I suspect this could be shortened to
data = [i; j; blksz; double(avg)];
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!