2016年3月17日

控制系统的带宽与二阶系统的简单定性理解

摘要: 先上自动控制原理上面的定义: 当控制系统的幅频特性下降到比零频率幅值低3dB时,所对应的频率为带宽频率,简称带宽。 系统的带宽反应了系统响应的快速性,也反映了对输入信号的复现能力。带宽大,系统的响应越快咯,但是带宽过宽,那么现实世界中的噪声会引入系统,造成不利影响。 这么说也许过于抽象,不知诸位看客 阅读全文

posted @ 2016-03-17 16:30 H.D 阅读(10222) 评论(1) 推荐(0) 编辑

Understanding Unix/Linux Programming-用户程序:play_again1

摘要: 1 /* play_again1.c 2 * purpuse: ask if user wants another play 3 * better : instant response without echo 4 * returns: 0 -> yes , 1 -> no 5 */ 6 7 #include 8 #include 9 #include... 阅读全文

posted @ 2016-03-17 10:58 H.D 阅读(265) 评论(0) 推荐(0) 编辑

Understanding Unix/Linux Programming-用户程序:play_again0

摘要: 1 /* play_again0.c 2 * purpuse: ask if user wants another play 3 * returns: 0 -> yes , 1 -> no 4 */ 5 6 #include 7 #include 8 #include 9 10 #define QUESTION "Do you want anot... 阅读全文

posted @ 2016-03-17 10:57 H.D 阅读(238) 评论(0) 推荐(0) 编辑

Understanding Unix/Linux Programming-终端控制和信号

摘要: 终端驱动程序的模式: 先通过简短的转换程序来深入理解设备驱动程序的细节: 使用tr命令能够达到同样的效果,但是tr的GNU版本具有输入缓冲,以上是一个不带缓冲的具体例子。这个程序中,rotate程序是和终端驱动器交换数据的,而终端驱动器从键盘输入数据并且从屏幕输出数据。 规范模式:缓冲和编辑 使用默 阅读全文

posted @ 2016-03-17 10:17 H.D 阅读(342) 评论(0) 推荐(0) 编辑

导航