代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/193277/8242735
m ge.m
function F = gt(X,Y)
% Internal class for constraint lists
% Author Johan L鰂berg
% $Id: ge.m,v 1.1 2004/06/17 08:40:02 johanl Exp $
superiorto('sdpvar');
superiorto('double');
try
% T
www.eeworm.com/read/193277/8242742
m le.m
function F = lt(X,Y)
% Internal class for constraint lists
% Author Johan L鰂berg
% $Id: le.m,v 1.1 2004/06/17 08:40:02 johanl Exp $
superiorto('sdpvar');
superiorto('double');
% Try to eva
www.eeworm.com/read/370047/9621596
m bspderiv.m
function bspderiv
%
% Function Name:
%
% bspdeval - Evaluate the control points and knot sequence of the derivative
% of a univariate B-Spline.
%
% Calling Sequence:
%
%
www.eeworm.com/read/269755/11079319
cpp newmat5.cpp
/// \ingroup newmat
///@{
/// \file newmat5.cpp
/// Transpose, evaluate, operations with scalar, matrix input.
// Copyright (C) 1991,2,3,4: R B Davies
//#define WANT_STREAM
#include "inc
www.eeworm.com/read/269229/11105152
cpp evaluatem.cpp
//计算后缀表达式的值Evaluatem.cpp
#include
#include
#include
#include
typedef float ElemType;
#include "Evaluate.cpp"
void main()
{char p[40];
float y;
p
www.eeworm.com/read/411929/11220883
cs admin_writeworkdiary.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using
www.eeworm.com/read/334652/12582312
java notexp.java
/**
* A NonterminalExpression
*/
public class NotExp implements BooleanExp {
private BooleanExp opernot1;
//private BooleanExp operor2;
public NotExp(BooleanExp oper1) {
www.eeworm.com/read/334652/12582317
java orexp.java
/**
* A NonterminalExpression
*/
public class OrExp implements BooleanExp {
private BooleanExp operor1;
private BooleanExp operor2;
public OrExp(BooleanExp oper1, BooleanExp
www.eeworm.com/read/334652/12582320
java andexp.java
/**
* A NonterminalExpression
*/
public class AndExp implements BooleanExp {
private BooleanExp operand1;
private BooleanExp operand2;
public AndExp(BooleanExp oper1, Boolea