Borrar filtros
Borrar filtros

Reshape histogram in other size

1 visualización (últimos 30 días)
Dani D
Dani D el 15 de Jun. de 2016
Respondida: Image Analyst el 15 de Jun. de 2016
Hello, I have one histogram with 1*256 double And i want reshape it with 256*1 How can do it? Thanks

Respuestas (1)

Image Analyst
Image Analyst el 15 de Jun. de 2016
Use the transpose operator or use rehape
counts = counts'; % Transpose
or
counts = reshape(counts, [], 1);

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by