代码搜索:evaluate

找到约 3,619 项符合「evaluate」的源代码

代码结果 3,619
www.eeworm.com/read/492695/6419397

m fwd.m

function y = fwd(net,x) w = repmat(net.w, size(x,1), 1); y = sum((w.*evaluate(net.kernel,x,net.sv))') - net.bias; y = y';
www.eeworm.com/read/492033/6430254

cpp graphmattime.cpp

#include "graphmattime.h" #include "global.h" #include "intpoints.h" #include "../../GEFEL/tablefunct.h" #include "../../GEFEL/matrix.h" #include "../../GEFEL/PARSER/parser.h" /** This constructor
www.eeworm.com/read/481658/6636981

m f1dim.m

% Move pcom (x units in xicom direction), and then evaluate the function there. function [f] = f1dim(x) % Must accompany linmin. global pcom; % Defned in linmin. global xicom; global nrfun
www.eeworm.com/read/480200/6668071

m ise.m

function v = ise(p,q,type) % % ise(p,q [,'type']) -- estimate the integrated squared error between % two densities p,q % type: % [double] -- use "epsilon-exact" prod
www.eeworm.com/read/480200/6668088

cpp dualtree.cpp

// // Matlab MEX interface for KD-tree C++ functions // // Written by Alex Ihler and Mike Mandel // Copyright (C) 2003 Alexander Ihler; distributable under GPL -- see README.txt // #define MEX
www.eeworm.com/read/480200/6668146

m reducekd2.m

function q=reduceKD(p,maxCost,costType) if (nargin < 3) costType = 1; end; % "max" cost if (nargin < 2) maxCost = round(getNpts(p)/10); end; bw = getBW(p,1); out = kde(mean(p),3*covar(p)); outW =
www.eeworm.com/read/476930/6743025

cpp test7.2_3dpointtest.cpp

/*#include using namespace std; class point { double x,y,z; public: point() { x=y=z=0; } point(double x,double y,double z) { this->x=x; this->y=y; this->z=z; }
www.eeworm.com/read/402283/11539823

m mm1201.m

% nested function example ratpoly1 = nestexample([1 2],[1 2 3]) % (x + 2)/(x^2 + 2x + 3) ratpoly2 = nestexample([2 1],[3 2 1]) % (2x +1)/(3x^2 + 2x +1) x=linspace(-10,10); % independent variabl