由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
EE版 - interview question
相关主题
请教一下,大家写论文时画流程图用什么软件来画啊?请教 怎样快速学会看POWER ELECTRONICS的阶梯图
signal processing某一门课里面提到的eye的概念。。。有没有好用的画diagram的软件?
A question about computer networking (转载)请教matlab里eye diagram的画法
有没有ee的msn讨论群which control theory textbook ? (for reference)
请教一个关于用示波器测eye diagram的问题大家都怎么画band diagram的?
请问用matlab和LabView分别control GPIB的区别和各自优势?有人用Silvaco模拟过InGaP和GaAs的junction么
刚转到EE,问个菜鸟问题【请教】哪儿有这样的实验平台买?
问个审稿的问题北理信息与电子学院院长龙腾教授将与近期访问UIUC (转载)
相关话题的讨论汇总
话题: next话题: s7话题: s1话题: bit话题: s6
进入EE版参与讨论
1 (共1页)
H***F
发帖数: 2501
1
suppose we have a system with bits coming serially. the output is 1 only if
the number at that cycle is divisible by 7. creat a state diagram. any
ideas?
1--->next bit
10=2--->next bit
101=5--->next bit
1011=11-->
l*****x
发帖数: 3431
2
寻找"111"string?

if

【在 H***F 的大作中提到】
: suppose we have a system with bits coming serially. the output is 1 only if
: the number at that cycle is divisible by 7. creat a state diagram. any
: ideas?
: 1--->next bit
: 10=2--->next bit
: 101=5--->next bit
: 1011=11-->

H***F
发帖数: 2501
3
不是。111可以被7除,10101=21也可以被7除。。

寻找"111"string?
if

【在 l*****x 的大作中提到】
: 寻找"111"string?
:
: if

b*****e
发帖数: 1193
4
what's the cycle?
4 bits?
H***F
发帖数: 2501
5
不停,一直下去。后面的补上来称为新的一位。

【在 b*****e 的大作中提到】
: what's the cycle?
: 4 bits?

e***y
发帖数: 4307
6
states:
start, s1, s2, s3, s4, s5, s6, s7
state transitions (input, next state)
start: (1, s1), (0, start)
s1: (1, s3), (0, s2)
s2: (1, s3), (0, s6)
s3: (1, s7), (0, s6)
s4: (1, s5), (0, s1)
s5: (1, s4), (0, s3)
s6: (1, s6), (0, s5)
s7: (1, s1), (0, s7) ==> output 1 at s7
basically the idea is to represent the remainders of division by 7 using
states s1-s7. there are only 7 different remainders so 7 states are needed.
at each input you'd determine the next remainder and hence the next state.
H***F
发帖数: 2501
7
good, thank you

【在 e***y 的大作中提到】
: states:
: start, s1, s2, s3, s4, s5, s6, s7
: state transitions (input, next state)
: start: (1, s1), (0, start)
: s1: (1, s3), (0, s2)
: s2: (1, s3), (0, s6)
: s3: (1, s7), (0, s6)
: s4: (1, s5), (0, s1)
: s5: (1, s4), (0, s3)
: s6: (1, s6), (0, s5)

j***j
发帖数: 324
8
very good and clear. smart...

【在 e***y 的大作中提到】
: states:
: start, s1, s2, s3, s4, s5, s6, s7
: state transitions (input, next state)
: start: (1, s1), (0, start)
: s1: (1, s3), (0, s2)
: s2: (1, s3), (0, s6)
: s3: (1, s7), (0, s6)
: s4: (1, s5), (0, s1)
: s5: (1, s4), (0, s3)
: s6: (1, s6), (0, s5)

1 (共1页)
进入EE版参与讨论
相关主题
北理信息与电子学院院长龙腾教授将与近期访问UIUC (转载)请教一个关于用示波器测eye diagram的问题
今天onesite被问的两个题目 (转载)请问用matlab和LabView分别control GPIB的区别和各自优势?
一般digital filter 的quantization noise怎么算?刚转到EE,问个菜鸟问题
Direct-sequence spread spectrum的问题问个审稿的问题
请教一下,大家写论文时画流程图用什么软件来画啊?请教 怎样快速学会看POWER ELECTRONICS的阶梯图
signal processing某一门课里面提到的eye的概念。。。有没有好用的画diagram的软件?
A question about computer networking (转载)请教matlab里eye diagram的画法
有没有ee的msn讨论群which control theory textbook ? (for reference)
相关话题的讨论汇总
话题: next话题: s7话题: s1话题: bit话题: s6