Nash-Sutcliffe Model Accuracy Metric

버전 1.0.0.0 (2.25 KB) 작성자: Jeff Burkey
A metric to measure the ability of a model to predict observed values
다운로드 수: 4.3K
업데이트 날짜: 2007/3/8

라이선스 보기

Nash-Sutcliffe model accuracy statistic. Nash-Sutcliffe coefficient is an indicator of the model?s ability to predict about the 1:1 line between observed and simulated data.

The Nash-Sutcliffe coefficient is calculated as:

sum(Qobs - Qsim)^2
NS = 1 - ----------------------------
sum(Qobs - Qmean)^2

With the Nash-Sutcliffe measure, an r-square coefficient is calculated using coefficient values equal to 1 indicate a perfect fit between observed and predicted data, and r-square values equal to or less than 0 indicate that the model is predicting no better than using the average of the observed data. Thus Ockham's razor should be applied.

Dimensions of Observed data array does not have to equal simulated data. An intersection is used to pair up observed data to simulated. This function is setup to pair up the first column in the observed data matrix and the first column in the simulated data matrix. Data values are located in column 2 of both matricies.

One critical assumption to this measurement is the data are normal.

Syntax:
[NSout metric_id] = nashsutcliffe(obsDATA, simDATA)

where:
obsData = N x 2
simData = N x 2

For convenience, I?ve also posted a skillscore function which is a derivation of the Nash-Sutcliffe. Both these functions submitted are not much more than a novelty given the simplistic nature of the statistic. And my plug on a highly valuable statistic I submitted a while ago, is non-parametric trend test, the Mann-Kendall Tau-b (named ktaub.m in the Earth Sciences category). Besides the dire need for such a statistic in MATLAB, the design has some elegance in it.

인용 양식

Jeff Burkey (2024). Nash-Sutcliffe Model Accuracy Metric (https://www.mathworks.com/matlabcentral/fileexchange/14178-nash-sutcliffe-model-accuracy-metric), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Predict Remaining Useful Life (RUL)에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0