代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/324386/13265415
f90 bondl.f90
! Taken from Frenkel and Smit.
! bondl ==> Algorithm 41, page 410
! gauss ==> Algorithm 42, page 411
subroutine bondl( Kr, req, beta, Seed, rtrial )
implicit none
real, intent(in) :: Kr
www.eeworm.com/read/324386/13265465
f90 erf.f90
real function erf(x)
! # MS Fortran
! Error function from Numerical Recipes.
! erf(x) = 1 - erfc(x)
implicit none
real dumerfc, x
real t, z
z = abs
www.eeworm.com/read/324304/13273600
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/319942/13439044
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/312016/13620179
m toascii.m
% toascii - convert char to ascii
%
% SYNOPSIS
% toascii(char)
%
% DESCRIPTION
% Parsing of m-files changed in Octave-2.0, making it slightly less
% pleasant to use implicit_str_to_num_ok. This hack
www.eeworm.com/read/309523/13669591
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/301504/13858056
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/113685/6126365
hpf flops.hpf
SUBROUTINE FLOPS(IO,NC,TSTEPS,RCUT,TIME, MX, MY, MZ)
IMPLICIT NONE
INTEGER IO, NC, NTOT, TSTEPS
DOUBLE PRECISION RCUT
DOUBLE PRECISION TIME
INTEGER MX, MY, M
www.eeworm.com/read/286592/6282759
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Zhou Weida (Zhouwd@rsp.xidi
www.eeworm.com/read/492438/6423131
f90 draw.f90
MODULE XYPlot
USE DFLIB
IMPLICIT NONE
LOGICAL mbDownUp
INTEGER mhDC, mhWnd
INTEGER mxScale, myScale
INTEGER mleft, mright, mtop, mbottom
DOUBLE PRECISION mxmax, mxmin, mymax, mymin
DOUBLE PR