필터 지우기
필터 지우기

normalization of cell arrays

조회 수: 4 (최근 30일)
yasmine
yasmine 2012년 1월 6일
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 ???

채택된 답변

Walter Roberson
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:
  • 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
There are other ways of coding this, such as using arrayfun()
  댓글 수: 1
yasmine
yasmine 2012년 1월 6일
unfortunately,i had this error:
??? Undefined function or method 'min' for input arguments of type 'cell'.
Error in ==> @(M)min(M(:))
Error in ==> DOC at 129
Gmin = cellfun(@(M) min(M(:)), G, 'Uniform', 0);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by