应用程序 偏最小二乘法回归分析 pls matlab
2022-11-07 20:31:15 247KB pls__matlab__ pls_回归 pls回归 回归
1
function [B, options, Yhat, RMSEP] = pls2reg(X, Y, PC, premethod, XTst, YTst) [ntrn, nfea] = size(X); [ntrn, nres] = size(Y); if nargin < 4 premethod = 1; end if nargin < 3 PC = 10; end
2021-10-14 13:06:51 2KB pls
1
matlab 偏最小二乘法代码偏最小二乘法 (PLS)、基于核的潜在结构正交投影 (K-OPLS) 和基于 NIPALS 的 OPLS 基于Yi Cao实现的PLS回归算法: 基于 的 K-OPLS 回归算法。 基于 R 包的 OPLS 实现,使用 NIPALS 分解循环。 安装 $ npm i ml-pls 用法 import PLS from 'ml-pls' ; var X = [ [ 0.1 , 0.02 ] , [ 0.25 , 1.01 ] , [ 0.95 , 0.01 ] , [ 1.01 , 0.96 ] , ] ; var Y = [ [ 1 , 0 ] , [ 1 , 0 ] , [ 1 , 0 ] , [ 0 , 1 ] , ] ; var options = { latentVectors : 10 , tolerance : 1e-4 , } ; var pls = new PLS ( options ) ; pls . train ( X , Y ) ; // assuming that you created Xtrain, Xtest, Ytrain,
2021-08-01 16:28:41 6.55MB 系统开源
1
偏最小二乘算法(Partial Least Squares,PLS)是一种常见的多元线性回归算法,MATLAB在R2008a版本已经加入了PLS算法的实现函数。 该代码把偏最小二乘算法(Partial Least Squares,PLS)的回归应用整理为“读取数据-训练模型-数据预测”的形式。
2021-07-19 21:46:49 171KB MATLAB PLS 回归 偏最小二乘
1
代码为 matlab 编写,代码有良好的注释,方便大家对 PLS 回归模型的理解
2021-03-01 08:28:48 1KB matlab pls
1