How can break a 1D array to matrix?
2 ビュー (過去 30 日間)
古いコメントを表示
I have a 1D array of length 153600 X 1. I want to break this array into 320 X 240 matrix how to do that . Value in the 1D array has been attached in a notepad.
0 件のコメント
回答 (1 件)
Image Analyst
2020 年 12 月 30 日
Try this:
m = reshape(v, 320, []);
where v is your vector and m is your 2-D matrix.
2 件のコメント
Image Analyst
2020 年 12 月 30 日
So do you want the left half of that
leftHalfImage = m(:, 1:240);
or the right half image
rightHalfImage = m(:, 241:end);
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!