Azzera filtri
Azzera filtri

Reshape histogram in other size

1 visualizzazione (ultimi 30 giorni)
Dani D
Dani D il 15 Giu 2016
Risposto: Image Analyst il 15 Giu 2016
Hello, I have one histogram with 1*256 double And i want reshape it with 256*1 How can do it? Thanks

Risposte (1)

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

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by