我有两组浮点数数据,一组 A 和一组 B。它们都是大小为 40*40 的矩阵。我想知道哪个集合更接近正态分布。我知道如何在 matlab 中使用 probplot() 来绘制一组概率。但是,我不知道如何找出分布的适应度水平。
In python, when people use problot, a parameter ,R^2, shows how good the distribution of the data is against to the normal distribution. The closer the R^2 value to value 1, the better the fitness is. Thus, I can simply use the function to compare two set of data by their R^2 value. However, because of some machine problem, I can not use the python in my current machine. Is there such parameter or function similar to the R^2 value in matlab ?
Thank you very much,