Reshape histogram in other size
1 回表示 (過去 30 日間)
古いコメントを表示
Hello, I have one histogram with 1*256 double And i want reshape it with 256*1 How can do it? Thanks
0 件のコメント
回答 (1 件)
Image Analyst
2016 年 6 月 15 日
Use the transpose operator or use rehape
counts = counts'; % Transpose
or
counts = reshape(counts, [], 1);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!