Weighted Means

버전 1.0.0.0 (3.03 KB) 작성자: Anthony Kendall
Calculates the weighted geometric, arithmetic, or harmonic means of input vectors.
다운로드 수: 1.4K
업데이트 날짜: 2008/3/19

라이선스 보기

This function calculates the weighted arithmetic, harmonic, or geometric mean of a set of input value arrays and weight arrays.

There are really two modes of operation:
1) If there is only one input value array and weight array, the weighted mean is calculated across all elements in this array. The user can specify which dimension to calculate the weighted mean across, or even specify 'all' in which case the arrays are flattened and only a scalar value is returned.
2) If there are multiple input value arrays and weight arrays, the element-by-element weighted mean is output across the N input value and weight arrays.

Examples:
Mode 1:
>> scalarMean = weighted_mean('harmonic',[1 2 3],[0.2, 0.3, 0.2]); %the output is single scalar value

>> arrayMean = weighted_mean('arithmetic',[1 2 3],[0.2, 0.3, 0.2],1); %the output is a vector of size (3x1)

Mode 2:
>> arrayMean = weighted_mean('geometric',[1,2,3],[4,5,6],[0.2,0.3,0.2],[0.2,0.1,0.1]); %the output is a vector of size (1x3)

인용 양식

Anthony Kendall (2026). Weighted Means (https://kr.mathworks.com/matlabcentral/fileexchange/19254-weighted-means), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Time Series에 대해 자세히 알아보기
버전 게시됨 릴리스 정보
1.0.0.0