필터 지우기
필터 지우기

how to get mean and std from a known CDF curve

조회 수: 26 (최근 30일)
Ziyan
Ziyan 2013년 7월 28일
Hello,
I'm a student now doing a project associated with stats a little bit. I need to find the mean and std values from a cumulative distribution plot. The cdf plot is obtained from a documentation and there is no other information but the curve. Is there any tool or function of Matlab can help me finding out the mean and std values? thanks a lot.

채택된 답변

Roger Stafford
Roger Stafford 2013년 7월 28일
If you can manage to transform the cdf plot into two arrays, one the discrete variable values, 'v', and the second the corresponding cumulative probability values, 'p', of these values, then you can use matlab's 'trapz' function to find the distribution's mean and standard deviation values from these arrays. The mean value, 'm', would simply be the integral of 'v' with respect to 'p' and the standard deviation would be the square root of the integral of (v-m)^2 with respect to 'p'.
I am not very knowledgeable about tracing plots to create discrete arrays, but I notice at least one File Exchange routine that appears to undertake such a task. It is located at:
http://www.mathworks.com/matlabcentral/fileexchange/3832-matlab-plot-tracing-utility/content/GTrace.m
There may be more in the File Exchange or even in one of Mathworks' toolboxes.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by