Cell components perpendicular division

1 回表示 (過去 30 日間)
MarshallSc
MarshallSc 2021 年 7 月 17 日
編集済み: DGM 2021 年 7 月 17 日
If I have a 4*4 cell array that each contain a 10*10 matrix as below (for example, Aii=10*10 matrix):
A={Aii Aij Aik Ail;
Aji Ajj Ajk Ajl;
Aki Akj Akk Akl;
Ali Alj Alk All};
How can I get a similiar cell array that denotes the division of perpendicular components such that I would get:
C={[Aii/Ajj] [Aij/Ajk] [Aik/Ajl] [Ail/Aji];
[Aji/Akj] [Ajj/Akk] [Ajk/Akl] [Ajl/Aki];
[Aki/Alj] [Akj/Alk] [Akk/All] [Akl/Ali];
[Ali/ij] [Alj/Aik] [Alk/Ail] [All/Aii]};

採用された回答

DGM
DGM 2021 年 7 月 17 日
Something like:
A = num2cell(reshape(1:16,[4 4])) % example array
B = cellfun(@rdivide,A,circshift(A,[-1 -1])) % output
To describe the shifting, consider the example:
A = {'Aii' 'Aij' 'Aik' 'Ail';
'Aji' 'Ajj' 'Ajk' 'Ajl';
'Aki' 'Akj' 'Akk' 'Akl';
'Ali' 'Alj' 'Alk' 'All'};
circshift(A,[-1 -1])
ans = 4×4 cell array
{'Ajj'} {'Ajk'} {'Ajl'} {'Aji'} {'Akj'} {'Akk'} {'Akl'} {'Aki'} {'Alj'} {'Alk'} {'All'} {'Ali'} {'Aij'} {'Aik'} {'Ail'} {'Aii'}
  6 件のコメント
DGM
DGM 2021 年 7 月 17 日
編集済み: DGM 2021 年 7 月 17 日
Yeah, you might need to set uniformoutput depending on what's in the array.
There isn't a difference between false or 0 when setting 'uniformoutput'. A lot of things are implicit in Matlab where possible. false is explicitly a logical scalar. 0 is a numeric scalar, but it's treated implicitly as a logical false when used in a logical context (and all nonzero numeric values are treated as true). For example
thisvar = false;
if ~thisvar; fprintf('thisvar is false'); end
thisvar is false
thisvar = 0;
if ~thisvar; fprintf('thisvar is false'); end
thisvar is false
As to why it still works even when truncated to 'uniform', it's hard to say since cellfun() is a built-in and the code isn't visible. That said, a lot of the input parsing for other functions do often allow undocumented abbreviations of parameter names. In fact, it appears that the tests that are used are simply to test that the argument is a char vector matching the characters in the name 'uniformoutput'. The shortest char vector that would meet these requirements is 'un', which seems to work.
MarshallSc
MarshallSc 2021 年 7 月 17 日
Thanks a lot for your great explanation!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by