image processing
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
hi all
how can i convert 2-D matrix(image) into vector. please reply me.
many thanks
0 件のコメント
回答 (3 件)
Taleb Almajrbi
2011 年 4 月 4 日
0 投票
2 件のコメント
Sean de Wolski
2011 年 4 月 4 日
Yes, this is correct. I would do it with numel since that's robust to higher dimensional matrices and faster:
Sv1=reshape(F1,numel(F1),1);
Sean de Wolski
2011 年 4 月 4 日
Also:
Sv1 = F1(:); %works also.
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!