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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

EBM風(fēng)機

  • 最小二乘曲面擬合程序(m文件)

    最小二乘曲面擬合程序(m文件),對一組三維數據z=f(x,y)擬合,成為關于x和y的多項式

    標簽: 程序

    上傳時間: 2015-11-10

    上傳用戶:xsnjzljj

  • 五對角占優線性方程組求解的MATLAB 程序MYLU。 輸入參數A為系數矩陣

    五對角占優線性方程組求解的MATLAB 程序MYLU。 輸入參數A為系數矩陣,F為右端向量。輸出參數L,U為A的LU 分解A=LU,X為解向量。

    標簽: MATLAB MYLU 對角 參數

    上傳時間: 2013-12-04

    上傳用戶:c12228

  • 在參考書目一這本書的附錄A

    在參考書目一這本書的附錄A,在單機中使用,但是最後在WIN95的光碟中找不到IENPSTUB.DLL及MSLOCUSR.DLL二個檔案,不知何故,可否告訴我如何解決這個問題? 我使用的是Win95的平臺,故須安裝PWS,但是卻無法安裝它,畫面出現是要求IE 4.01以上的版本,我使用的是IE5為何還是無法安裝呢?

    標簽:

    上傳時間: 2015-11-13

    上傳用戶:lijianyu172

  • This document provides guidelines for integrating a discrete high speed USB host controller onto a f

    This document provides guidelines for integrating a discrete high speed USB host controller onto a fourlayer desktop motherboard. The material covered can be broken into three main categories: Board design guidelines, EMI/ESD guidelines and front panel USB guidelines. Section 1.1 Background provides an explanation of the routing experiments and testing performed to validate the feasibility of 480 Megabits per second on an actual motherboard. Section 7 contains a design checklist that lists each design recommendation described in this document. High speed USB operation is described in the USB 2.0 Specification (http://www.usb.org/developers/docs.html).

    標簽: integrating controller guidelines document

    上傳時間: 2013-11-27

    上傳用戶:電子世界

  • This document provides guidelines for integrating a discrete high speed USB host controller onto a f

    This document provides guidelines for integrating a discrete high speed USB host controller onto a fourlayer desktop motherboard. The material covered can be broken into three main categories: Board design guidelines, EMI/ESD guidelines and front panel USB guidelines. Section 1.1 Background provides an explanation of the routing experiments and testing performed to validate the feasibility of 480 Megabits per second on an actual motherboard. Section 7 contains a design checklist that lists each design recommendation described in this document. High speed USB operation is described in the USB 2.0 Specification (http://www.usb.org/developers/docs.html).

    標簽: integrating controller guidelines document

    上傳時間: 2015-11-18

    上傳用戶:xhz1993

  • gphone is a net phone base on the rtp protocol. It is simple but pratical and can be a good sample f

    gphone is a net phone base on the rtp protocol. It is simple but pratical and can be a good sample for newbies of rtp protocol

    標簽: protocol pratical gphone simple

    上傳時間: 2014-01-19

    上傳用戶:lnnn30

  • pyformat.zip包中有兩個文件夾

    pyformat.zip包中有兩個文件夾,pyformat_src文件夾里的為源代碼,pyformat_dist文件夾里的為編譯后的exe可執行程序,另外每個文件夾里都放了一個名為“testfile.txt”的測試文件。 源碼使用方法示例:執行"python pyformat.py testfile.txt"。 可執行程序使用方法示例:執行“pyformat testfile.txt”。 即可把文件名中的不帶調拼音+聲調記號轉化為帶調拼音輸出到stdout。文件名可以有多個。 例如:輸入wo3 shi4 zhong1 guo2 ren2. 輸出為wǒ shì zhōng guó rén. zho1ng、zhon1g、zhong1、zhong12341等均輸出為zhōng。

    標簽: pyformat zip

    上傳時間: 2015-11-26

    上傳用戶:1427796291

  • 螞蟻算法

    螞蟻算法,c語言版,其中,‘F’點表示食物,‘H’表示窩,白色塊表示障礙物,‘+’就是螞蟻了。

    標簽: 螞蟻算法

    上傳時間: 2013-12-24

    上傳用戶:2404

  • 嘿嘿,大俠看到不要見笑呀... 大家都知道使用DLL的好處.于是我就想把FORM封裝到DLL里面去. 到網上找,發現是MDI和模式窗體的,非模式的也有很多問題.便想自己解決這個問題. 原來是用

    嘿嘿,大俠看到不要見笑呀... 大家都知道使用DLL的好處.于是我就想把FORM封裝到DLL里面去. 到網上找,發現是MDI和模式窗體的,非模式的也有很多問題.便想自己解決這個問題. 原來是用DLL創建一個對象返回,但發現有很多的問題. 想了半天就去尋根問柳吧. 找到了類. 我就想把類封裝進DLL,到時簡單的返回一個類,然后在主程序里操作不就簡單了? 找了半天發現了TFormClass,于是試了試從DLL導出來,像一般的程序一樣創建窗體發現成功. 接著我又想看看其他的類是不是也能這樣,就拿TFrame來實驗. function GetDllFrameClass():TFrame stdcall 第一次是這樣聲明的,失敗.奇怪?! 試了好多次都不行,就想到了TFormClass(Ctrl+左鍵),進去看看,發現是這樣聲明的. TFormClass = class of TForm 哎呀,恍然大悟!! class(TFrame) 是聲明一個類, 這個類繼承了TFrame類 f: TFrame 是一個對象 class of TFrame 聲明的是類類型, f:TFrameClass 是一個類. function GetDllFrameClass():TFrame 返回就不是類而是對象了,照TFormClass修改后TFrameClass = class of TFrame 運行...成功,

    標簽: DLL FORM MDI 模式

    上傳時間: 2013-12-10

    上傳用戶:kiklkook

  • 單片機系統上電后

    單片機系統上電后,P0 口和 P1 口都被清 0。然后,你規定一個由 6 個數字構成的序列(每個數字從 0~F 中選取),比如 E、8、9、0、7、F。然后每次當單片機檢測到外部中斷 0發起中斷時間時,讀取 P0 口和 P1 口上的狀態值,當連續 6 次外部中斷事件的對應的數字序列構成你所設定的序列后(舉例來說,如果 P0.0 是 1,P0 和 P1 的其他管腳是 0,那么我們稱為檢測到一次數字 0),從串口打印輸出一幅類似下圖的 16×16 的ASCII碼的圣誕樹圖片。

    標簽: 單片機系統 上電

    上傳時間: 2015-12-04

    上傳用戶:wqxstar

主站蜘蛛池模板: 鸡东县| 本溪市| 祥云县| 万安县| 西藏| 玛曲县| 梅州市| 易门县| 石屏县| 紫金县| 公安县| 玉门市| 正宁县| 蒙自县| 福海县| 胶南市| 海盐县| 盐亭县| 枣阳市| 运城市| 怀化市| 平和县| 通许县| 墨江| 平阴县| 威远县| 叙永县| 九龙城区| 迁安市| 北宁市| 广饶县| 陈巴尔虎旗| 巴彦淖尔市| 漯河市| 运城市| 普宁市| 弋阳县| 沧源| 怀集县| 阿巴嘎旗| 开封市|