Help me.
D = {[1 2],[1 1] ;[1 6 ],[5 2]}
L=[1 0 0 0; 0 1 0 0 ];
out=cellfun(@(x) x*L,D,'un',0)
In result:
size(D)=(2,2) ,size(L)=(2,4) , size(out)=(2,2) Why the size(out) is not equal to (2,4),as by matrix multiplication

 採用された回答

Matt J
Matt J 2013 年 11 月 11 日
編集済み: Matt J 2013 年 11 月 11 日

1 投票

The output of cellfun must always satisfy size(out)=size(D). Cellfun always operates on D element by element.

1 件のコメント

RoboKid
RoboKid 2013 年 11 月 11 日
Thank you Matt ..

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 11 月 11 日

1 投票

out is going to be a cell array. Each of its locations is going to have a 2 x 4 array. The 2 x 2 corresponds to the shape of the cell array D, 2 x 2, not to the size of the contents of D.

2 件のコメント

Matt J
Matt J 2013 年 11 月 11 日
I think you mean, each location is going to have a 1x4 array.
RoboKid
RoboKid 2013 年 11 月 11 日
Thank you Walter.

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

カテゴリ

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

質問済み:

2013 年 11 月 11 日

コメント済み:

2013 年 11 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by