zoukankan      html  css  js  c++  java
  • Matlab 偏最小二乘 PLSregress

      [XLOADINGS,YLOADINGS] = plsregress(X,Y,NCOMP)

      //  Ncomp:主成分个数

      // XLOADING : X 的线性组合系数矩阵

      //YLOADING : y 

      // XSCORES is an N-by-NCOMP orthonormal matrix with rows corresponding to observations, columns to components.

      // YSCORES is an N-by-NCOMP matrix with rows corresponding to observations,columns to components.   YSCORES is neither orthogonal nor normalized.

      //BETA is a (P+1)-by-M matrix, containing intercept terms(截距项) in the first row, i.e., Y = [ONES(N,1) X]*BETA + Yresiduals, and Y0 = X0*BETA(2:END,:) + Yresiduals.

      // PCTVAR containing the percentage of variance explained by the model.

      // MSE containing estimated mean squared errors for PLS models with 0:NCOMP components.

    [XL2,YL2,XS2,YS2,BETA2,PCTVAR2,MSE2,stats2] =plsregress(a,b,ncomp)

    beta3(1,:)=mu(n+1:end)-mu(1:n)./sig(1:n)*BETA2([2:end],:).*sig(n+1:end) %原始数据回归方程的常数项

    beta3([2:n+1],:)=(1./sig(1:n))'*sig(n+1:end).*BETA2([2:end],:) %计算原始变量x1,...,xn的系数,每一列是一个回归方程

    sig = std(data)

      -----------------------------------------------------------------------------------------------------

    Χ1' = -4.1306 * u1+0.0558 *u2t

    XL2 =

    -4.1306 0.0558
    -4.1933 1.0239
    2.2264 3.4441


    YL2 =

    2.1191 -0.9714
    2.5809 -0.8398
    0.8869 -0.1877

    XSCORES is an N-by-NCOMP orthonormal matrix with rows    corresponding to observations, columns to components.

  • 相关阅读:
    CSS面试题总结
    HTML面试题总结
    JS中如何删除某个元素下的所有子元素(节点)?
    JS apply() call() bind()方法的使用
    JS小游戏--贪吃蛇
    Tensorflow——tf.train.exponential_decay函数(指数衰减法)
    自定义属性
    JS中兼容代码总结---更新中
    测试flex的各种属性
    添加网络打印机_批处理文件
  • 原文地址:https://www.cnblogs.com/zero27315/p/10651109.html
Copyright © 2011-2022 走看看