代码搜索:N
找到约 10,000 项符合「N」的源代码
代码结果 10,000
www.eeworm.com/read/374416/9406795
m n3.m
function r=n3(x1,x2,x3,x4)
r=(n2(x1,x2,x3)-n2(x2,x3,x4))/(x1-x4);
www.eeworm.com/read/374416/9406919
m n4.m
function r=n4(x1,x2,x3,x4,x5)
r=(n3(x1,x2,x3,x4)-n3(x2,x3,x4,x5))/(x1-x5);
www.eeworm.com/read/178142/9417629
m n_pred.m
% prediction in N-PLS
% X is a I x J x K (x L x M) array, given as an I x JK (I x JKLM) matrix
% ypred is I x JK
% Remmember to center X and y
%
% lv (# latent variables), Rx (order of X) and Ry
www.eeworm.com/read/178142/9417635
m n_pls.m
% MULTI-LINEAR PLS (Submitted to J. Chemom.)
% Can handle tri, quadri- and penti-linear X
% and uni-, bi- and tri-linear Y
%
% Copyright
% Rasmus Bro 1995
% Royal Veterinary & Agricultural Unive
www.eeworm.com/read/178142/9417637
m n_pca.m
function [T,Wj,Wk,Wl]=n_pca(X,lv,order,J,K,L);
%
% Copyright
% Rasmus Bro 1995
% Royal Veterinary & Agricultural University, Cph.
% Thorvaldsensvej 40, 6, ii
% DK-1871 Frb, C
% Denmark
%
%
www.eeworm.com/read/178142/9417641
m n_cross.m
function [ypr,press]=n_cross(Xc,yc);
% [ypr,press]=n_cross(Xc,yc);
% Output: press lv x 1, and ypr (cross-validated predictions)
[II,JJ]=size(Xc);
ypr=zeros(size(yc));
lvv=input(' Maximum
www.eeworm.com/read/178066/9419656