Reshape histogram in other size

1 回表示 (過去 30 日間)
Dani D
Dani D 2016 年 6 月 15 日
回答済み: Image Analyst 2016 年 6 月 15 日
Hello, I have one histogram with 1*256 double And i want reshape it with 256*1 How can do it? Thanks

回答 (1 件)

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

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by