i need this equation matlab code any body help me.
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (1개)
Jan
2018년 1월 15일
편집: Jan
2018년 1월 15일
gbar = sum(g(:)) / (M * N);
sigma2 = sum((g(:) - gbar) .^ 2) / (M * N - 1);
Looks straight forward. But what about:
sigma2 = var(g(:))
댓글 수: 1
Image Analyst
2018년 1월 15일
and
gBar = mean(g(:)) % Compute mean over all values in the 2-D matrix.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!