代码搜索:evaluate

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

代码结果 3,619
www.eeworm.com/read/264746/11303005

m moptimum.m

function moptimum %Program moptimum is for designing I-stage optimum decimator %or interpolator (I=1,2,3 or 4). The program computes the decimation %factors, filter characteristics, and decim
www.eeworm.com/read/407557/11415996

java localvariabletest.java

/** * 这个类有编译错误 * 演示了局部变量的使用 */ package sample; public class LocalVariableTest { // int x; public void correctLocalV() { int x; //Just declare int y = 1
www.eeworm.com/read/405217/11468632

m chebpoly.m

% CHEBPOLY Evaluate Chebyshev polynomial % % [Y]=CHEBPOLY(N, X) Evaluates the Nth Chebyshev polynomial at X function Y = chebpoly(N,X) X = X(:).'; T(1,:) = X; T(2,:) =
www.eeworm.com/read/402283/11539730

m mm2201.m

% mm2201.m N = 128; % choose a power of 2 for speed t = linspace(0,3,N); % time points for function evaluation f = 2*exp(-3*t); % evaluate the function and minimize aliasing: f(3) ~ 0 Ts = t(2)
www.eeworm.com/read/347945/11624488

m not.m

function X = not(X) % Internal class for constraint list % Author Johan L鰂berg % $Id: not.m,v 1.1 2004/06/17 08:40:02 johanl Exp $ superiorto('sdpvar'); superiorto('double'); % Try to eval
www.eeworm.com/read/346994/11706775

c list0406.c

#include /* Initialize variables. Note that c is not less than d, */ /* which is one of the conditions to test for. */ /* Therefore, the entire expression should evaluate as false.*/
www.eeworm.com/read/343751/11930406

m ctp43.m

function [c, A] = ctp43(x, ctrl) %Call: [c A]=ctp43(x,ctrl) %Evaluate both the constraints and the corresponding %Jacobian if ctrl>0, for the problem below at x %The problem is defined as c(x)>=0
www.eeworm.com/read/343751/11930498

m hmukai.m

function [h, A] = hmukai(x, ctrl) %Call: [h A]=hmukai(x,ctrl) %Evaluate both the constraints and the corresponding %Jacobian if ctrl>0, for the problem below at x %The problem is defined as h(x)>=
www.eeworm.com/read/343751/11930518

m ctp269.m

function [c, A] = ctp269(x, ctrl) %Call: [c A]=ctp269(x,ctrl) %Evaluate both the constraints and the corresponding %Jacobian if ctrl>0, for the problem below at x %The problem is defined as c(x)=0
www.eeworm.com/read/152406/12116736

m chebpoly.m

% CHEBPOLY Evaluate Chebyshev polynomial % % [Y]=CHEBPOLY(N, X) Evaluates the Nth Chebyshev polynomial at X function Y = chebpoly(N,X) X = X(:).'; T(1,:) = X; T(2,:) =