I want to copy a matrix to a cell array

Hi All, As said, suppose i have
A = [1 2;3 4] %A simple matrix
and
B = cell(2,2) %A simple 2*2 cell array
I want to copy the contents of A into B. I don't want to use for loops etc. There should be a direct way, but atleast I cannot find that. Would appreciate if someone can help here. Thanks, AQ

 採用された回答

Vishal Rane
Vishal Rane 2012 年 12 月 6 日
編集済み: Vishal Rane 2012 年 12 月 6 日

1 投票

Use
B = num2cell(A)
Refer num2cell

1 件のコメント

AbdulQadir Shabbir
AbdulQadir Shabbir 2012 年 12 月 7 日
Oh perfect. That's a wow Vishal. Thanks so very much :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by