matlab读取mysql数据
conn = database('ci_bootstrap_3','root','1q1q1q1q','com.mysql.jdbc.Driver','jdbc:mysql://localhost:3306/ci_bootstrap_3'); %数据库连接
ping(conn); &测试
lung1=exec(conn,'select lung from phytest where lung>0');
lung=fetch(lung1);
Y=lung.data
%到这步Y=lung.data会显示出结果为
%[XXX]
%[xxx]
%[xxx]
[Z2]=cell2mat(Y); %元胞数组
%此时输出结果为 XXX XXX XXX
%这个时候可以直接做pearson相关系数了
corr(Z1,Z2,'type','pearson')
welcome