- deliberately returning a cell array when the results would fit in a vector
- passing multiple cell arrays in to cellfun(), knowing that the corresponding elements will be extracted from each and passed to the function handle
normalization of cell arrays
3 ビュー (過去 30 日間)
古いコメントを表示
Hi
i want to normalize the values in a cell array called G
G is partitioned into 6 blocks (cell arrays) so i want to normalize each block separately (G{i,j}), each block is of size 128X128
Gmin = min((G(:)));
Gnorm = (G - Gmin) ./ (max(G1{:,:}) - Gmin);
i tried this:
Gmin(i,j)=min(G{i,j});
but i got this error:
??? Undefined function or method 'min' for input arguments of type 'cell'.
Error in ==> DOC at 124
Gmin(i,j)=min(G{i,j});
any suggestions please ???
0 件のコメント
採用された回答
Walter Roberson
2012 年 1 月 6 日
Gmin = cellfun(@(M) min(M(:)), G, 'Uniform', 0);
Gmax = cellfun(@(M) max(M(:)), G, 'Uniform', 0);
Gnorm = cellfun(@(M,minM,maxM) (M-minM) ./ (maxM-minM)), G, Gmin, Gmax, 'Uniform', 0);
This relies on two uncommon usages:
There are other ways of coding this, such as using arrayfun()
2 件のコメント
Asma
2024 年 11 月 4 日
the error occurs probably due to the presence of non-numeric or absent values, try checking for isnumeric before proceeding
% Check which cells are numeric isNumericCell = cellfun(@isnumeric, G);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Encryption / Cryptography についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!