代码搜索:evaluate

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

代码结果 3,619
www.eeworm.com/read/167515/9966852

c interpreter.c

/* */ #include "defs.H" #include class VariableExp; class Context; /* */ class BooleanExp { public: BooleanExp(); virtual ~BooleanExp(); /* */ virtual bool Evaluate(Context&) =
www.eeworm.com/read/166568/10016303

java compactxpathexpression.java

package org.w3c.dom.xpath; public interface XPathExpression { public XPathResult evaluate(Node contextNode, short type, XPathResult result) throws XPathException, DOMException; }
www.eeworm.com/read/360770/10079236

m polynom.m

function y = polynom (a,x) %---------------------------------------------------------------- % Usage: y = polynom (a,x) % % Description: Evaluate a polynomial using Horner's rule. % % Inpu
www.eeworm.com/read/359005/10171733

m surfview.m

% SURFVIEW 弌椡僒乕僼僃僗價儏乕傾 % % surfview('a') 偵傛偭偰幚峴偝傟傞弌椡僒乕僼僃僗價儏乕傾偼丄FIS 僼傽僀儖 % a.fis 偺1屄傑偨偼2屄偺弌椡偺弌椡僒乕僼僃僗傪昞帵偡傞 GUI 僣乕儖偱偡丅 % 偙傟偼丄僼傽僕傿僔僗僥儉傗娭楢偟偨 FIS 峴楍傪曄峏偡傞偙偲偼側偄偺偱丄 % 撉傒庢傝偺傒偺僄僨傿僞偱偡丅億僢僾傾僢僾儊僯儏乕傪巊偭偰丄昞帵偟偨偄2 ...
www.eeworm.com/read/358191/10194262

cpp poly.cpp

// evaluate a polynomial #include template T PolyEval(T coeff[], int n, const T& x) {// Evaluate the degree n polynomial with // coefficients coeff[0:n] at the point x.
www.eeworm.com/read/358191/10194655

cpp horner.cpp

// evaluate a polynomial using Horner's rule #include template T Horner(T coeff[], int n, const T& x) {// Evaluate the degree n polynomial with // coefficients coeff[0:
www.eeworm.com/read/162441/10305457

java notexp.java

/** * A NonterminalExpression */ public class NotExp implements BooleanExp { private BooleanExp opernot1; //private BooleanExp operor2; public NotExp(BooleanExp oper1) {
www.eeworm.com/read/162441/10305468

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/162441/10305474

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/161587/10394065

cpp poly.cpp

// evaluate a polynomial #include template T PolyEval(T coeff[], int n, const T& x) {// Evaluate the degree n polynomial with // coefficients coeff[0:n] at the point x.