代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/415311/11077106
m hmm_forward.m
function [Pout, Alpha] = HMM_Forward(a, b, initial_state, V)
% Find the probability of a finite state in a Markov chain using the HMM forward algorithm
%
% Inputs:
% a - Transition probabili
www.eeworm.com/read/415311/11077122
m hmm_generate.m
function out = HMM_generate(a,b,initial,seq_len)
% Generate a Markov sequence
%
% Inputs:
% a - Transition probability matrix
% b - Output generator matrix
% initial - Initial state
% seq
www.eeworm.com/read/413925/11136882
c main.c
#include "inc.h"
void Initial();
void main (void )
{
char str1[]={0x48,0x56,0x12,0x97,0x00,0x00,0x00,0x00};
char tmp;
Initial();
PORTA=0;
PORTB=0;
LockDS1302;
www.eeworm.com/read/413322/11159469
v handshake_gate_t.v
module handshake_t();
reg clk,r,a,reset;
wire ef;
handshake_gate C (a,clk,r,reset,ef);
initial
begin
clk=0;r=0;a=0;reset=0;
#30 r=1;
#20 a=1;
#60 r=0;
#20 a=0;
#50 a=1;
#10
www.eeworm.com/read/265935/11249114
cpp executable.cpp
/*==========================================================================
Copyright (c) 2006, Bill Rubin
All rights reserved.
Redistribution and use in source and binary
www.eeworm.com/read/249650/12482968
v ram_top.v
`timescale 1ns/1ps
module ram_top;
reg clk,rst;
wire [3:0] q;
always #10 clk=~clk;
initial
begin
clk=0;rst=1;
#50 rst
www.eeworm.com/read/147608/12542326
c menu4.c
#include
#include
#include
char *menu[] = {
"a - add new record",
"d - delete record",
"q - quit",
NULL,
};
int getchoice(char *greet, char *choices[
www.eeworm.com/read/248729/12544084
m sample_pomdp.m
function [obs, hidden] = sample_pomdp(initial_prob, transmat, obsmat, act)
% SAMPLE_POMDP Generate a random sequence from a Partially Observed Markov Decision Process.
% [obs, hidden] = sample_pomdp(p
www.eeworm.com/read/147096/12584323
m lqgoptm.m
%
%LQGOPT1 Function to optimize LQG example using least squares
%
% See the file LQGCOST to see how the cost function is derived.
% Copyright (c) 1990-94 by The MathWorks, Inc.
% Load data fo
www.eeworm.com/read/334496/12597194
c retarget.c
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------------------------