亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

醫(yī)(yī)療器械管理系統(tǒng)(tǒng)

  • DELPHI車(chē)輛管理系統(tǒng) 幾經(jīng)修改

    DELPHI車(chē)輛管理系統(tǒng) 幾經(jīng)修改,完善不少

    標(biāo)簽: DELPHI 系統(tǒng) 修改

    上傳時(shí)間: 2017-09-14

    上傳用戶:ynsnjs

  • SaleManage.rar 源碼 附詳盡使用說(shuō)明及數(shù)據(jù)庫(kù) 進(jìn)銷存管理系統(tǒng)

    SaleManage.rar 源碼 附詳盡使用說(shuō)明及數(shù)據(jù)庫(kù) 進(jìn)銷存管理系統(tǒng)

    標(biāo)簽: SaleManage 系統(tǒng)

    上傳時(shí)間: 2013-12-14

    上傳用戶:CHENKAI

  • 最小二乘法仿真y=20*sin(100*pi*t+pi/3)+4*sin(200*pi*t)+10*sin(300*pi*t)+2*sin(400*pi*t)+6*sin(500*pi*t)波形

    最小二乘法仿真y=20*sin(100*pi*t+pi/3)+4*sin(200*pi*t)+10*sin(300*pi*t)+2*sin(400*pi*t)+6*sin(500*pi*t)波形

    標(biāo)簽: sin pi 100 200

    上傳時(shí)間: 2013-12-23

    上傳用戶:jkhjkh1982

  • learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1:

    learningMatlab PhÇ n 1 c¬ së Mat lab Ch­ ¬ ng 1: Cµ i ® Æ t matlab 1.1.Cµ i ® Æ t ch­ ¬ ng tr×nh: Qui tr×nh cµ i ® Æ t Matlab còng t­ ¬ ng tù nh­ viÖ c cµ i ® Æ t c¸ c ch­ ¬ ng tr×nh phÇ n mÒ m kh¸ c, chØ cÇ n theo c¸ c h­ íng dÉ n vµ bæ xung thª m c¸ c th« ng sè cho phï hî p. 1.1.1 Khë i ® éng windows. 1.1.2 Do ch­ ¬ ng tr×nh ® ­ î c cÊ u h×nh theo Autorun nª n khi g¾ n dÜ a CD vµ o æ ® Ü a th× ch­ ¬ ng tr×nh tù ho¹ t ® éng, cö a sæ

    標(biāo)簽: learningMatlab 172 199 173

    上傳時(shí)間: 2013-12-20

    上傳用戶:lanwei

  • 卡爾曼濾波器matlab程序

    load initial_track  s; % y:initial data,s:data with noiseT=0.1; % yp denotes the sample value of position% yv denotes the sample value of velocity% Y=[yp(n);yv(n)];% error deviation caused by the random acceleration % known dataY=zeros(2,200);Y0=[0;1];Y(:,1)=Y0;A=[1 T    0 1];          B=[1/2*(T)^2 T]';H=[1 0]; C0=[0 0    0 1];C=[C0 zeros(2,2*199)];Q=(0.25)^2; R=(0.25)^2;

    標(biāo)簽: matlab 卡爾曼濾波器 程序

    上傳時(shí)間: 2014-12-28

    上傳用戶:asaqq

  • 三維曲線曲面比較演示系統(tǒng)程序設(shè)計(jì) 設(shè)計(jì)一個(gè)圖形用戶界面(GUI)演示常見(jiàn)的三維函數(shù)圖形

    三維曲線曲面比較演示系統(tǒng)程序設(shè)計(jì) 設(shè)計(jì)一個(gè)圖形用戶界面(GUI)演示常見(jiàn)的三維函數(shù)圖形,至少包含“三維繪圖” 、“選項(xiàng)” 、“退出”等菜單,三維繪圖的包括:參數(shù)方程x=e-t/20cos(t), y= e-t/20sin(t),z=t其中t 為0到2π、參數(shù)方程x=t,y=t2,z=t3其中t為0到1之間(在同一圖形界面中分別繪制它們的三維曲面和三維曲線圖)。“選項(xiàng)”菜單主要包括:網(wǎng)格開(kāi)關(guān),圖例開(kāi)關(guān),坐標(biāo)邊框開(kāi)關(guān),色度空間選擇菜單,曲線顏色菜單。

    標(biāo)簽: GUI 比較 圖形用戶界面 函數(shù)

    上傳時(shí)間: 2017-01-10

    上傳用戶:hasan2015

  • 二叉樹(shù)子系統(tǒng)

    #include<stdio.h> #define TREEMAX 100 typedef struct  BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ch1,ch2,a; ch1='y'; while(ch1=='y'||ch1=='y') { printf("\n"); printf("\n\t\t             二叉樹(shù)子系統(tǒng)"); printf("\n\t\t*****************************************"); printf("\n\t\t           1---------建二叉樹(shù)            "); printf("\n\t\t           2---------先序遍歷            "); printf("\n\t\t           3---------中序遍歷            "); printf("\n\t\t           4---------后序遍歷            "); printf("\n\t\t           5---------求葉子數(shù)            "); printf("\n\t\t           6---------求結(jié)點(diǎn)數(shù)            "); printf("\n\t\t           7---------求樹(shù)深度            "); printf("\n\t\t           0---------返    回            "); printf("\n\t\t*****************************************"); printf("\n\t\t      請(qǐng)選擇菜單號(hào) (0--7)"); scanf("%c",&ch2); getchar(); printf("\n"); switch(ch2) { case'1': printf("\n\t\t請(qǐng)按先序序列輸入二叉樹(shù)的結(jié)點(diǎn):\n"); printf("\n\t\t說(shuō)明:輸入結(jié)點(diǎn)(‘0’代表后繼結(jié)點(diǎn)為空)后按回車(chē)。\n"); printf("\n\t\t請(qǐng)輸入根結(jié)點(diǎn):"); T=CreateTree(); printf("\n\t\t二叉樹(shù)成功建立!\n");break; case'2': printf("\n\t\t該二叉樹(shù)的先序遍歷序列為:"); Preorder(T);break; case'3': printf("\n\t\t該二叉樹(shù)的中序遍歷序列為:"); Inorder(T);break; case'4': printf("\n\t\t該二叉樹(shù)的后序遍歷序列為:"); Postorder(T);break; case'5': count=0;Leafnum(T); printf("\n\t\t該二叉樹(shù)有%d個(gè)葉子。\n",count);break; case'6': count=0;Nodenum(T); printf("\n\t\t該二叉樹(shù)總共有%d個(gè)結(jié)點(diǎn)。\n",count);break; case'7': printf("\n\t\t該樹(shù)的深度為:%d",TreeDepth(T)); break; case'0': ch1='n';break; default: printf("\n\t\t***請(qǐng)注意:輸入有誤!***"); } if(ch2!='0') { printf("\n\n\t\t按【Enter】鍵繼續(xù),按任意鍵返回主菜單!\n"); a=getchar(); if(a!='\xA') { getchar(); ch1='n'; } } } } BT *CreateTree() { BT *t; char x; scanf("%c",&x); getchar(); if(x=='0') t=NULL; else { t=new BT; t->data=x; printf("\n\t\t請(qǐng)輸入%c結(jié)點(diǎn)的左子結(jié)點(diǎn):",t->data);         t->lchild=CreateTree(); printf("\n\t\t請(qǐng)輸入%c結(jié)點(diǎn)的右子結(jié)點(diǎn):",t->data);         t->rchild=CreateTree();     } return t; } void Preorder(BT *T) { if(T) { printf("%3c",T->data); Preorder(T->lchild); Preorder(T->rchild); } } void Inorder(BT *T) { if(T) { Inorder(T->lchild); printf("%3c",T->data); Inorder(T->rchild); } } void Postorder(BT *T) { if(T) { Postorder(T->lchild); Postorder(T->rchild); printf("%3c",T->data); } } void Leafnum(BT *T) { if(T) { if(T->lchild==NULL&&T->rchild==NULL) count++; Leafnum(T->lchild); Leafnum(T->rchild); } } void Nodenum(BT *T) { if(T) { count++; Nodenum(T->lchild); Nodenum(T->rchild); } } int TreeDepth(BT *T) { int ldep,rdep; if(T==NULL) return 0; else { ldep=TreeDepth(T->lchild); rdep=TreeDepth(T->rchild); if(ldep>rdep) return ldep+1; else return rdep+1; } }

    標(biāo)簽: 二叉樹(shù) 子系統(tǒng)

    上傳時(shí)間: 2020-06-11

    上傳用戶:ccccy

  • VIP專區(qū)-嵌入式/單片機(jī)編程源碼精選合集系列(139)

    VIP專區(qū)-嵌入式/單片機(jī)編程源碼精選合集系列(139)資源包含以下內(nèi)容:1. NIOS_II.2. 復(fù)雜模型機(jī)的設(shè)計(jì)與實(shí)現(xiàn) 組成原理的課程設(shè)計(jì).3. 北京理工大學(xué)嵌入式系統(tǒng)的課件.4. 一個(gè)自己寫(xiě)的簡(jiǎn)單員工管理系統(tǒng).5. 32位嵌入式系統(tǒng)實(shí)現(xiàn).6. i2c總線的CPLD程序.7. mDOC在C語(yǔ)言環(huán)境下的驅(qū)動(dòng)開(kāi)發(fā)程序.8. 凱恩帝繼電器版的PCB原文件。可以用作凱恩帝數(shù)控系統(tǒng)輸出信號(hào)的連接.9. Dm6455 driver,magbe useful to you!.10. verilog編程的好工具書(shū).11. 頻率計(jì).12. FM3103的英文資料.13. lcd320240驅(qū)動(dòng)程序.14. SLE4442技術(shù)手冊(cè).15. 自己編寫(xiě)的GAL可編程邏輯電路的編譯軟件abel4的windows界面.16. 基于S3C44B0X的嵌入式系統(tǒng)應(yīng)用開(kāi)發(fā)實(shí)例.ppt.17. 天煌公司的thus-1型嵌入式實(shí)驗(yàn)開(kāi)發(fā)系統(tǒng)I/O接口實(shí)驗(yàn).18. 語(yǔ)音芯片isd1760代碼.19. 一個(gè)GUI編程的例子 一個(gè)GUI編程的例子.20. 創(chuàng)博嵌入式工具箱電子畫(huà)板代碼.21. 高速示波器。單片機(jī)和CPLD實(shí)現(xiàn)。靈活方便.22. UART的源文件.23. AC-3的標(biāo)準(zhǔn)代碼.24. 為實(shí)現(xiàn)導(dǎo)彈絕緣電阻的自動(dòng)化快速測(cè)試.25. 為實(shí)現(xiàn)導(dǎo)彈絕緣電阻的自動(dòng)化快速測(cè)試.26. 基于ARM2131的IIC讀寫(xiě)CAT1025程序.27. 嵌入式編程c、c++.28. 12864液晶(ks0108控制器)的驅(qū)動(dòng)程序.29. FT232BM設(shè)計(jì)的USB轉(zhuǎn)串口原理圖.30. 基于lpc2103的一個(gè)控制板.31. 中星微301攝想頭最新驅(qū)動(dòng).32. 嵌入式系統(tǒng)開(kāi)發(fā) MRC 522 S50 S70.33. Jz4740_BSP_v1.2,軍正BSP.34. 文件系統(tǒng)轅馬,想要的258031823大幅度反對(duì)反對(duì)法.35. CAT93C46-5 7-66-86 EEPROM數(shù)據(jù)手冊(cè).36. uC/OS-II在ARM7上的移植源碼.37. 開(kāi)發(fā)板AT91SAM9260-EK的測(cè)試程序.38. FreeRTOSV3.2.0 經(jīng)典嵌入式操作系統(tǒng).39. HT1621驅(qū)動(dòng)程序,C語(yǔ)言編寫(xiě),MCU為8051系列.40. C51語(yǔ)言內(nèi)嵌入?yún)R編語(yǔ)句的程序?qū)崿F(xiàn).

    標(biāo)簽: 光學(xué) 設(shè)計(jì)方法

    上傳時(shí)間: 2013-05-23

    上傳用戶:eeworm

  • Fortran - Tóm tắ t nộ i dung mô n họ c Các khái niệ m và yế u tố

    Fortran - Tóm tắ t nộ i dung mô n họ c Các khái niệ m và yế u tố trong ngô n ngữ lậ p trình FORTRAN. Các câ u lệ nh củ a ngô n ngữ FORTRAN. Cơ bả n về chư ơ ng chư ơ ng dị ch và mô i trư ờ ng lậ p trình DIGITAL Visual Fortran. Viế t và chạ y các chư ơ ng trình cho các bài toán đ ơ n giả n bằ ng ngô n ngữ FORTRAN.

    標(biāo)簽: Fortran 7855 7897 7885

    上傳時(shí)間: 2013-12-25

    上傳用戶:songrui

  • 對(duì)于一個(gè)動(dòng)態(tài)系統(tǒng)dy/dt=-y(t)+x(t-m),m為一個(gè)時(shí)間滯后常量

    對(duì)于一個(gè)動(dòng)態(tài)系統(tǒng)dy/dt=-y(t)+x(t-m),m為一個(gè)時(shí)間滯后常量,x(t)、y(t)都是關(guān)于時(shí)間 t的函數(shù),其中x是一個(gè)正態(tài)分布的數(shù)據(jù)集合,可隨機(jī)產(chǎn)生,這樣情況下,如何將系統(tǒng)情況 用樣本點(diǎn)表示出來(lái)

    標(biāo)簽: t-m dy dt 動(dòng)態(tài)系統(tǒng)

    上傳時(shí)間: 2015-09-23

    上傳用戶:15071087253

主站蜘蛛池模板: 彭州市| 侯马市| 延津县| 伽师县| 德庆县| 丰台区| 临桂县| 晴隆县| 县级市| 涟水县| 离岛区| 丰顺县| 称多县| 察隅县| 桂阳县| 十堰市| 朝阳区| 和顺县| 九寨沟县| 康乐县| 阜南县| 汝阳县| 贵港市| 临澧县| 台湾省| 沙雅县| 深圳市| 西乌| 大港区| 浦江县| 洱源县| 南乐县| 乳源| 盖州市| 扶余县| 阿荣旗| 聊城市| 收藏| 吴忠市| 赣榆县| 饶阳县|