how to convert a 2-dimensional image matrix to a one dimensional vector

6 ビュー (過去 30 日間)
pls give the process and the suitable function to implement the given task

採用された回答

Stephen23
Stephen23 2015 年 2 月 16 日
編集済み: Stephen23 2015 年 2 月 16 日
If A is your image matrix, then try
B = A(:);
OR
B = reshape(A,1,[]);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by