虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Ds-F

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    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

  • matlab标准遗传算法 优化函数为f=-(x-1)^2+4

    matlab标准遗传算法 优化函数为f=-(x-1)^2+4,其中,0<=x<=3

    标签: matlab 标准 函数 算法

    上传时间: 2014-01-20

    上传用户:evil

  • DS & HF in CDMA system

    DS & HF in CDMA system

    标签: system CDMA DS HF

    上传时间: 2017-09-17

    上传用户:thuyenvinh

  • 设有二元函数 f(x,y) = f(x) + f(y) 其中:f(x) = f(x-1) * x (x>1) f(x) = 1 (x=

    设有二元函数 f(x,y) = f(x) + f(y) 其中:f(x) = f(x-1) * x (x>1) f(x) = 1 (x=1) f(y) = f(y-1) * f(y-2) (y>2) f(y) = 1 (y=1,2) 请编程建立3个并发协作进程,它们分别完成f(x,y),f(x),f(y)

    标签: gt 二元 函数

    上传时间: 2017-09-18

    上传用户:baiom

  • gfhff g f f gks fdg sljdflgj sfdgs ldjf gs df g sfd

    gfhff g f f gks fdg sljdflgj sfdgs ldjf gs df g sfd

    标签: sljdflgj gfhff sfdgs ldjf

    上传时间: 2017-09-26

    上传用户:xwd2010

  • Hybrid Ds-FH communication systems

    Hybrid Ds-FH communication systems

    标签: communication systems Hybrid Ds-FH

    上传时间: 2013-11-30

    上传用户:gmh1314

  • dshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj f

    dshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbv

    标签: dshfghfhhgsfgfghfhfghgfhfghfgh hfg ghghf fg

    上传时间: 2017-09-26

    上传用户:1159797854

  • Cubic spline algorithm approximating function y=f(x) - ((-2)*x*(2*x+3))/(x*x+4*x+5) in interval [-2

    Cubic spline algorithm approximating function y=f(x) - ((-2)*x*(2*x+3))/(x*x+4*x+5) in interval [-2 2]

    标签: approximating algorithm function interval

    上传时间: 2013-12-05

    上传用户:xymbian

  • 16进制转十进制

    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

  • CAST-F超声波成像

    CAST-F超声波成像,井下地层超声波成像

    标签: CAST-F超声波成像

    上传时间: 2015-04-13

    上传用户:longge