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

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

66

  • matlab應用程序源代碼實例

    matlab應用程序源代碼實例,包括多個應用方向,1-32是:圖形應用篇33-66是:界面設計篇67-84是:圖形處理篇85-100是:數(shù)值分析篇

    標簽: matlab 應用程序 源代碼

    上傳時間: 2013-12-28

    上傳用戶:aix008

  • IEEE 802.16Conformance01-2003 IEEE Standard for Conformance to IEEE 802.16 Part 1: Protocol Implemen

    IEEE 802.16Conformance01-2003 IEEE Standard for Conformance to IEEE 802.16 Part 1: Protocol Implementation Conformance Statement (PICS) Proforma for 10-66 GHz WirelessMAN-SC Air Interface

    標簽: Conformance IEEE 802.16 Standard

    上傳時間: 2016-10-02

    上傳用戶:sardinescn

  • IEEE 802.16Conformance02-2003 IEEE Standard Conformance to IEEE Std 802.16 Part 2: Test Suite Struct

    IEEE 802.16Conformance02-2003 IEEE Standard Conformance to IEEE Std 802.16 Part 2: Test Suite Structure and Test Purposes for 10-66 GHz WirelessMAN-SC Air Interface

    標簽: Conformance IEEE 802.16 Standard

    上傳時間: 2016-10-02

    上傳用戶:zhenyushaw

  • IEEE 802.16Conformance03-2004 IEEE Standard Conformance to IEEE Std 802.16 Part 3: Radio Conformance

    IEEE 802.16Conformance03-2004 IEEE Standard Conformance to IEEE Std 802.16 Part 3: Radio Conformance Tests (RCT) for 10–66 GHz WirelessMAN-SC™ Air Interface

    標簽: Conformance IEEE 802.16 Standard

    上傳時間: 2016-10-02

    上傳用戶:lo25643

  • 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void)

    溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }

    標簽: include stdlib stdio gt

    上傳時間: 2014-11-10

    上傳用戶:wpwpwlxwlx

  • 溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void)

    溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }

    標簽: include stdlib stdio gt

    上傳時間: 2013-12-12

    上傳用戶:亞亞娟娟123

  • Verilog HDL的程式

    Verilog HDL的程式,上網找到SPI程式, vspi.v這程式相當好用可用來接收與傳送SPI,並且寫了一個傳輸信號測試,spidatasent.v這程式就是傳送的資料,分別為00 66... 01 77...... 02 55這樣的資料,並透過MAX+PULS II軟體進行模擬,而最外層的程式是test_createspi.v!

    標簽: Verilog HDL 程式

    上傳時間: 2017-03-06

    上傳用戶:onewq

  • OTSU Gray-level image segmentation using Otsu s method. Iseg = OTSU(I,n) computes a segmented i

    OTSU Gray-level image segmentation using Otsu s method. Iseg = OTSU(I,n) computes a segmented image (Iseg) containing n classes by means of Otsu s n-thresholding method (Otsu N, A Threshold Selection Method from Gray-Level Histograms, IEEE Trans. Syst. Man Cybern. 9:62-66 1979). Thresholds are computed to maximize a separability criterion of the resultant classes in gray levels. OTSU(I) is equivalent to OTSU(I,2). By default, n=2 and the corresponding Iseg is therefore a binary image. The pixel values for Iseg are [0 1] if n=2, [0 0.5 1] if n=3, [0 0.333 0.666 1] if n=4, ... [Iseg,sep] = OTSU(I,n) returns the value (sep) of the separability criterion within the range [0 1]. Zero is obtained only with images having less than n gray level, whereas one (optimal value) is obtained only with n-valued images.

    標簽: OTSU segmentation Gray-level segmented

    上傳時間: 2017-04-24

    上傳用戶:yuzsu

  • PCI(外設部件互連)是當今個人計算機的主流總線結構

    PCI(外設部件互連)是當今個人計算機的主流總線結構,是微型計算機中處理器/存儲器與外圍控制部件、擴展卡之間的互連接口。PCI局部總線規(guī)范是互連機構的協(xié)議,也是電氣和機械配置的規(guī)范。 本書分為9章,涵蓋了PCI局部總線規(guī)范2.2版及其最新進展,詳細介紹了PCI局部總線的原理和操作,內容包括PCI局部總線的基本概念、信號的定義、總線的操作、電氣規(guī)范、機械規(guī)范、配置空間、66 MHz規(guī)范、BIOS和PCI-PCI橋等。書中通過大量的時序波形和實例對PCI局部總線的實際應用進行了深入淺出的闡述。

    標簽: PCI 外設 互連 個人計算

    上傳時間: 2013-12-16

    上傳用戶:wangyi39

  • stc-isp-15xx-v6.66

    STC單片機專用下載軟件,點擊直接可以使用,還可以設定定時器

    標簽: STC 單片機 串口 下載

    上傳時間: 2015-06-15

    上傳用戶:wozhuwoxin

主站蜘蛛池模板: 望都县| 新绛县| 呼图壁县| 东海县| 铜梁县| 乌苏市| 茌平县| 永康市| 长乐市| 安仁县| 张家港市| 平昌县| 镇巴县| 徐水县| 双辽市| 昆明市| 哈尔滨市| 灵寿县| 朝阳区| 云南省| 萝北县| 定陶县| 泽普县| 乌海市| 祁东县| 重庆市| 陆丰市| 犍为县| 且末县| 和龙市| 大田县| 古蔺县| 什邡市| 开化县| 黄浦区| 简阳市| 浑源县| 莒南县| 赤水市| 高陵县| 安溪县|