代码搜索:evaluate
找到约 3,619 项符合「evaluate」的源代码
代码结果 3,619
www.eeworm.com/read/334229/12616627
cc symbreg.cc
// symbreg.cc
/* ---------------------------------------------------------------
Symbolic Regression
An example for how to use gpc++ - The Genetic Programming Kernel
This program is free software
www.eeworm.com/read/235380/14072946
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/202494/15381356
cpp nodes.cpp
// -*- c-basic-offset: 2 -*-
/*
* This file is part of the KDE libraries
* Copyright (C) 1999-2002 Harri Porten (porten@kde.org)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C)
www.eeworm.com/read/202224/15389132
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/108859/15574050
m examp40.m
clc,echo on
%EXAMPLE 40
f=0:0.01:2; w=2*pi*f; % Frequency array
ha=2 ./ (2+j*w); % Evaluate H(f) for (a)
hb=freqs([2 0],[1 2],w);
www.eeworm.com/read/108859/15574057
m examp17.m
clc,echo on
%EXAMPLE 17
h=ilt('tf',2,[1 2]) % Symbolic Impulse Response
h1=sysresp1('s',2,[1 2]) % Same using sysresp1
w=sysresp1('s',2,[1 2],[1 0 0 0 0])
www.eeworm.com/read/103011/15749458
java booleancomparable.java
package piy;
import java.io.Serializable;
/**
* Represents any boolean statement that can be evaluated to return a boolean.
* @author David Vivash
* @version 1.0, 30/04/01
*/
public abstrac
www.eeworm.com/read/191798/8422227
txt evaluatem.txt
//计算后缀表达式值的文件Evaluate.cpp
const int SM=40;
#include"linearStack2.cpp"
float Evaluate(char* str)
//计算由str字符串所表示的后缀表达式的值,
//表达式要以'@'字符结束.
{LinStack S;//创建对象S
S.InitStack(SM);//初始化栈
istrstream
www.eeworm.com/read/191798/8422251
cpp evaluatem.cpp
//计算后缀表达式的值Evaluatem.cpp
#include
#include
#include
#include
#include
typedef float ElemType;
#include "Evaluate.cpp"
void main()
{char p
www.eeworm.com/read/191767/8423972
java notexp.java
/**
* A NonterminalExpression
*/
public class NotExp implements BooleanExp {
private BooleanExp opernot1;
//private BooleanExp operor2;
public NotExp(BooleanExp oper1) {