代码搜索:sequential
找到约 1,846 项符合「sequential」的源代码
代码结果 1,846
www.eeworm.com/read/364127/9921612
v seq4.v
//----- Synthesizable Circuit -----
module Counter4 (
// Sequential circuit 4
// Inputs:
i$Clock,
i$Reset,
i$InializeCount,
i$CountUp,
i$EnableCount,
i$N,
// Outputs:
o$Count
www.eeworm.com/read/362246/10010062
c smo_mex.c
/* --------------------------------------------------------------------
smo_mex.c: MEX-file for Sequential Minimal Optimizer.
Compile: mex smo_mex.c ../kernels/kernel_fun.c
Synopsis:
[Alpha,b
www.eeworm.com/read/361582/10044408
txt 实现关机-危险勿试.txt
using System;
using System.Runtime.InteropServices;
class shoutdown{
[StructLayout(LayoutKind.Sequential, Pack=1)]
internal struct TokPriv1Luid
{
public int Count;
pub
www.eeworm.com/read/359373/10153220
m bookdemo.m
% PURPOSE : We address here a nonlinear non-Gaussian problem using
% the standard particle filtering algorithm.
% For more details refer to the introduction of our book:
% Sequential Monte Carlo in P
www.eeworm.com/read/280595/10311743
c smo_mex.c
/* --------------------------------------------------------------------
smo_mex.c: MEX-file for Sequential Minimal Optimizer.
Compile: mex smo_mex.c ../kernels/kernel_fun.c
Synopsis:
[Alpha,b
www.eeworm.com/read/351797/10609816
m train.m
function net = train(tutor, x, y, C, kernel, zeta, net)
% TRAIN
%
% Train a support vector classification network, using the sequential minimal
% optimisation algorithm.
%
% net = train(tut
www.eeworm.com/read/349332/10835102
txt 实现关机-危险勿试.txt
using System;
using System.Runtime.InteropServices;
class shoutdown{
[StructLayout(LayoutKind.Sequential, Pack=1)]
internal struct TokPriv1Luid
{
public int Count;
pub
www.eeworm.com/read/273055/10930194
m train.m
function net = train(tutor, x, y, C, kernel, zeta, net)
% TRAIN
%
% Train a support vector classification network, using the sequential minimal
% optimisation algorithm.
%
% net = train(tut
www.eeworm.com/read/272848/10940530
cpp rsequentialsearch.cpp
// recursive sequential search
#include
#include // has copy
using namespace std;
template
int rSequentialSearch(T a[], int n, const T& x)
{// Search the
www.eeworm.com/read/272848/10941095
cpp sequentialsearch2.cpp
// sequential search of unordered list with an extra position
#include
#include
using namespace std;
template
int sequentialSearch(T a[], int n, const T& x)