代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/179943/9329974
tif stale-state.tif
www.eeworm.com/read/375313/9364496
vhd sd_state.vhd
-- --------------------------------------------------------------------
-- >>>>>>>>>>>>>>>>>>>>>>>>> COPYRIGHT NOTICE
www.eeworm.com/read/178871/9383077
m bin_state.m
function bin_state = bin_state( int_state, m )
% converts an vector of integer into a matrix; the i-th row is the binary form
% of m bits for the i-th integer
for j = 1:length( int_state )
for
www.eeworm.com/read/178871/9383079
m int_state.m
function int_state = int_state( state )
% converts a row vector of m bits into a integer (base 10)
[dummy, m] = size( state );
for i = 1:m
vect(i) = 2^(m-i);
end
int_state = state*vect';
www.eeworm.com/read/178627/9390174
class server_state.class
www.eeworm.com/read/178627/9390181
class client_state.class
www.eeworm.com/read/178627/9390200
java server_state.java
/**
*协议的服务器端准备状态.
*是Idle状态选择的下一个状态
*执行它的doIt方法,并转入下一个状态
*/
import java.io.*;
public class Server_State extends State {
String dir = null;
//这个方法提供了所要求的状态的功能,并决定下一个状态
State doIt() {