Test if a data distribution follows a Gaussian distribution in MATLAB

后端 未结 3 739
被撕碎了的回忆
被撕碎了的回忆 2020-12-14 10:09

I have some data points and their mean point. I need to find whether those data points (with that mean) follows a Gaussian distribution. Is there a function in MATLAB which

3条回答
  •  借酒劲吻你
    2020-12-14 10:48

    Check this documentation page on all available hypothesis tests.

    From those, for your purpose you can use:

    • Chi-square goodness-of-fit test
    • Lilliefors test
    • z-test
    • t-test
    • Kolmogorov-Smirnov test

    ... among others

    You can also use some visual tests like:

    • hist
    • normplot
    • cdfplot

提交回复
热议问题