代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/363231/9964583
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/363231/9964587
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/363196/9965627
h olsr_state.h
/***************************************************************************
* Copyright (C) 2004 by Francisco J. Ros *
* fjrm@dif.um.es
www.eeworm.com/read/363196/9965629
cc olsr_state.cc
/***************************************************************************
* Copyright (C) 2004 by Francisco J. Ros *
* fjrm@dif.um.es