Reshape histogram in other size
Afficher commentaires plus anciens
Hello, I have one histogram with 1*256 double And i want reshape it with 256*1 How can do it? Thanks
Réponses (1)
Image Analyst
le 15 Juin 2016
Use the transpose operator or use rehape
counts = counts'; % Transpose
or
counts = reshape(counts, [], 1);
Catégories
En savoir plus sur Histograms dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!