代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/393250/8302406
txt 2.39.txt
float Evaluate(SqPoly pn, float x)
/* pn.data[i].coef 存放ai, */
/* pn.data[i].exp存放ei (i=1,2,...,m) */
/* 本算法计算并返回多项式的值。不判别溢出。 */
/* 入口时要求0≤e1
www.eeworm.com/read/392443/8341971
m mrqcof.m
function [alpha,beta,chisq] = mrqcof(x,y,sig,ndata,a,ia,ma,nalp,funcs,model)
%
% Used by mrqmin to evaluate the linearized fitting matrix alpha,
% and vector beta as in 15.5.8 (Numerical Recipies),
www.eeworm.com/read/370047/9621459
m nrbeval.m
function [p,w] = nrbeval(nurbs,tt)
%
% Function Name:
%
% nrbeval - Evaluate a NURBS at parameteric points
%
% Calling Sequence:
%
% [p,w] = nrbeval(crv,ut)
% [p,w] = nrbeval(srf,{u
www.eeworm.com/read/369007/9669372
prg gzhs.prg
* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
* 文件名: GZHS.PRG
www.eeworm.com/read/172014/9726661
m fx3n.m
function [f,dfdx] = fx3n(x)
% fx3n Evaluate f(x) = x - x^(1/3) - 2 and dfdx for Newton algorithm
f = x - x.^(1/3) - 2;
dfdx = 1 - (1/3)*x.^(-2/3);
www.eeworm.com/read/172012/9726702
m expmx2.m
function y = expmx2(x)
% expmx2 Evaluate exp(-x^2), where x is a scalar or vector
y = exp(-x.^2);
www.eeworm.com/read/172010/9726801
m rhsdecay.m
function dydt = rhsDecay(t,y,flag,alpha)
% rhsDecay Evaluate rhs of dy/dt = -alpha*y with a variable alpha.
% "flag" parameter is required for compatability with ode45
dydt = -alpha*y;
www.eeworm.com/read/268284/11145494
mdl frac_resampler_dn_v2.mdl
Model {
Name "frac_resampler_dn_v2"
Version 6.4
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
Com
www.eeworm.com/read/268284/11145496
mdl frac_resampler_up_v2.mdl
Model {
Name "frac_resampler_up_v2"
Version 6.4
MdlSubVersion 0
GraphicalInterface {
NumRootInports 0
NumRootOutports 0
ParameterArgumentNames ""
Com
www.eeworm.com/read/266346/11231599
cpp text1.cpp
#include
#include
#include //显示矩阵时需要延时,这里有Sleep()函数。
using namespace std;
//接收键盘时使用
const enum Input { UP = 0x048, DOWN = 0x050, LEFT = 0x04b,