what is var function in matlab?how does it works in image processing?
이전 댓글 표시
what is var function in matlab? how does it works in image processing?
댓글 수: 1
Matt J
2013년 11월 7일
Shouldn't you know, if you've read
>>doc var
>>help var
답변 (1개)
Image Analyst
2013년 11월 7일
0 개 추천
V = var(X) returns the variance of X for vectors. For matrices, var(X)is a row vector containing the variance of each column of X.For N-dimensional arrays, var operates along the first non-singleton dimension of X. The result V is an unbiased estimator of the variance of the population from which X is drawn, as long as X consists of independent, identically distributed samples.
It might possibly be used locally in image processing as an edge detector, or to determine the noise or SNR in an image.
카테고리
도움말 센터 및 File Exchange에서 Image Category Classification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!