代码搜索:simulating
找到约 328 项符合「simulating」的源代码
代码结果 328
www.eeworm.com/read/244284/12875031
match-0 menu.match-0
..............MENU for SIMULATE ......................
......... Change these parameters if necessary:.......
>>>> Dipole moment (e*A): -40.00000 -40.00000 -41.12812
>>>> Quadrupole moment tensor
www.eeworm.com/read/215139/15073041
m rsomsimv02.m
% Simulating a RSOM on an Artificial Time Series
% Network type: SOMSD, training for 10000 epochs
%
% ---------------------------------------------------------
% Amir Reza Saffari Azar Alamdar
www.eeworm.com/read/215139/15073046
m rsomsimv01.m
% Simulating a RSOM on an Artificial Time Series
% Network type: RecSOM, training for 10000 epochs
%
% ---------------------------------------------------------
% Amir Reza Saffari Azar Alamda
www.eeworm.com/read/266379/11229045
cpp fig01_19.cpp
/**
* A class for simulating a memory cell.
*/
template
class MemoryCell
{
public:
explicit MemoryCell( const Object & initialValue = Object( ) )
: storedValue(
www.eeworm.com/read/266379/11229246
cpp fig01_06.cpp
/**
* A class for simulating an integer memory cell.
*/
class IntCell
{
public:
explicit IntCell( int initialValue = 0 )
: storedValue( initialValue ) { }
int read( ) const
www.eeworm.com/read/281000/10273522
cpp fig01_07.cpp
#ifndef IntCell_H
#define IntCell_H
/**
* A class for simulating an integer memory cell.
*/
class IntCell
{
public:
explicit IntCell( int initialValue = 0 );
int read( ) const;
www.eeworm.com/read/424380/10456158
c parameters.c
printf("\nWARNING: I am simulating Standard PSO 2007");
param.clamping =1;
param.init=0;
param.initVel=5;
param.localSearch=0;
param.R=0;
param.rand=0;
param.randOrder=1;
param.strat=0;
param.S = (in
www.eeworm.com/read/244284/12875293
inc simul.inc
c....... total number of simulating charges (for simulate.f)
cIMPORTANT! It should be greater than 9 in any event!
c
parameter (N_Simul0=200)
www.eeworm.com/read/266379/11229039
cpp fig01_07.cpp
#ifndef IntCell_H
#define IntCell_H
/**
* A class for simulating an integer memory cell.
*/
class IntCell
{
public:
explicit IntCell( int initialValue = 0 );
int read( ) const;
www.eeworm.com/read/191613/8425822
cpp pr0308.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 3.8 on page 51
// Simulating a simple calculator
#include
using namespace st