If you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files).
标签: sourcecodes registered Please docume
上传时间: 2013-12-19
上传用户:litianchu
如果您还没有注册,请先注册。源码要求为至少5个C或Java源码或其他好源码或编程学习资料,质量越高得到的下载个数越多(一般上载5个,可以下载200个)。
标签:
上传时间: 2013-12-22
上传用户:bcjtao
倒立摆模型的局部线性化 设倒立摆的摆角范围为[-15,15]度,摆角角速度范围为[-200,200]度/秒,摆角角加速度范围为[-200,200]度/秒2,采用三角形隶属函数对摆角和摆角角速度进行模糊化,摆角初始状态为[0.2,0]。
上传时间: 2017-09-12
上传用户:lx9076
f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member account after checking your files. If you do not want to upload source code, you can join the [VIP member] to
标签: sourcecodes registered documen Please
上传时间: 2017-09-13
上传用户:ljmwh2000
f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member account after checking your files. If you do not want to upload source code, you can join the [VIP member] to
标签: sourcecodes registered documen Please
上传时间: 2014-01-16
上传用户:fandeshun
很好的Java学习资料,200多个java程序!
标签: Java
上传时间: 2014-11-22
上传用户:康郎
一个TISC的模拟cpu代码,一共有200多行,不过麻雀虽小,却五脏俱全,而且作者对每行代码都做了详细的说明,下面仔细的分析一下。
上传时间: 2017-09-15
上传用户:Ants
Matlab的M文件编写的数控插补2D直线算法仿真。具体参数可使用:X-500,Y-600,Fc-600,Fs-0,Fa-0,at--200.仿真的本意是为了验证DSP上同类插补算法的正确性
上传时间: 2017-09-17
上传用户:zhyiroy
欢迎光临最大的源码下载中文网站http://www.pudn.com 本站以C语言和Java语言、嵌入式开发、算法实现为主,源码数量达几十万个,有200多个分类,很多都是本站会员的私家珍藏,互联网上其他地方是找不到的 http://www.pudn.com
上传时间: 2014-01-24
上传用户:cjl42111
DATAS SEGMENT w dw 0 keybuf db 255 db 0 db 255 dup(0) ;定义键盘输入需要的缓冲区 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf ;用0a号功能,输入一个字符串 mov ah,0ah ;用回车结束 int 21h mov dl,0ah ;再进行换行,以便在下一行显示转换后的字符串 mov ah,2 int 21h ; push ax ; push dx ; mov dl,cl ; mov ah,02 ; int 21h ; pop dx ; pop ax mov bx,offset keybuf+1 ;取出字符串的字符个数,作为循环的次数 mov cl,[bx] mov ch,0 mov ax,0 again: inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx ;是小写字母,则转换为大写字母 mov [w],ax mov dl,[bx] ;取出一个字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1: sub dl,30h add [w],dx loop again mov ax,[w] mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h jmp lab5 ;循环,处理完整个字符串 lab4: MOV AH,4CH INT 21H CODES ENDS END START
标签: 汇编
上传时间: 2015-04-02
上传用户:wcc0310