相关矩阵 MATLAB
您是否知道一个 matlab 脚本,它可以获取一组数据的相关矩阵,例如列数 = 7,行数 = n>>7
x1 x2 x3 x4 x5 x6 x7
0.780 2.042 2.754 2.894 5.000 5.000 5.000
0.767 0.816 2.758 2.898 5.000 1.644 1.626
0.816 0.836 1.558 2.124 2.952 5.000 5.000
0.848 0.871 1.588 2.147 2.966 5.000 5.000
1.378 1.620 1.433 2.567 3.268 3.203 5.000
....
Do you know a matlab script that gets the correlation matrix of a set of data like numbe of columns=7, and rows = n>>7
x1 x2 x3 x4 x5 x6 x7
0.780 2.042 2.754 2.894 5.000 5.000 5.000
0.767 0.816 2.758 2.898 5.000 1.644 1.626
0.816 0.836 1.558 2.124 2.952 5.000 5.000
0.848 0.871 1.588 2.147 2.966 5.000 5.000
1.378 1.620 1.433 2.567 3.268 3.203 5.000
....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
corrcoef
。一般来说,您可以通过搜索在线帮助立即找到此类内容,例如通过方便的
lookfor
命令:例如
Try
corrcoef
.In general, you can find these sort of things immediately by searching the online help, for example via the convenient
lookfor
command:For instance