代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/200976/15419102
cpp newmat7.cpp
//$$ newmat7.cpp Invert, solve, binary operations
// Copyright (C) 1991,2,3,4: R B Davies
#include "include.h"
#include "newmat.h"
#include "newmatrc.h"
#ifdef use_namespace
namespace NEWMAT {
www.eeworm.com/read/113055/15471541
cpp infix.cpp
#include
#include
#include"MathOptr.h"
int isoptr(char ch)
{
if(ch=='+'||ch=='-'||ch=='*'||ch=='/'||ch=='(')
return(1);
else
return(0);
}
void Infix(char *
www.eeworm.com/read/112976/15473250
cc eval.cc
// eval.cc
//--------------------------------------------------------------------------
// This code is a component of Genetic Programming in C++ (Version 0.40)
// Copyright Adam P. Fraser, 1993,
www.eeworm.com/read/111603/15509338
m compilemex.m
clear mex;
% class smosvctutor
cd @smosvctutor
fprintf(1, 'recompiling method @smosvctutor/smosvctrain...\n');
mex smosvctrain.cpp InfCache.cpp LrrCache.cpp SmoTutor.cpp -lm
cd ..
% class string
www.eeworm.com/read/110378/15535323
java notexp.java
/**
* A NonterminalExpression
*/
public class NotExp implements BooleanExp {
private BooleanExp opernot1;
//private BooleanExp operor2;
public NotExp(BooleanExp oper1) {
www.eeworm.com/read/110378/15535325
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/110378/15535326
java andexp.java
/**
* A NonterminalExpression
*/
public class AndExp implements BooleanExp {
private BooleanExp operand1;
private BooleanExp operand2;
public AndExp(BooleanExp oper1, Boolea
www.eeworm.com/read/109329/15559295
pas dwssmtplib.pas
unit dwsSMTPLib;
interface
uses
Forms, SysUtils, Classes, dwsComp, WIndows, VMSockets, VMSmtp;
const
ERRMAILSEND = 'SendMail ERROR';
type
TdwsSMTPLib = class(TdwsLib)
protected
www.eeworm.com/read/108859/15574063
m examp61.m
clc,echo on
%EXAMPLE 61
num=[2 0]; % Numerator of H(z)
den=[1 -0.4]; % Denominator of H(z)
vin=[5 0 0; 2 pi/2 -pi/2; 4 pi/4 -pi/3];
www.eeworm.com/read/108859/15574071
m examp44.m
clc,echo on
%EXAMPLE 44
pc=chebpole(3, 1) % Poles
[P, Q]=delay('c1', 3, 1) % Numerator and Denominator of delay
nu=0:0.01:2; % Frequency array
num=polyval(P,nu);