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

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

無線網(wǎng)

  • This file contains all possible questions that the exam 2 could contain (SSD2 consideration), as w

    This file contains all possible questions that the exam 2 could contain (SSD2 consideration), as well as exercises that may require the practical examination, I hope they help, luck!

    標簽: consideration questions contains possible

    上傳時間: 2013-12-25

    上傳用戶:himbly

  • for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix

    for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix H = entropy([X Y Z]) this command will find the joint entropy for the 3 variables H = entropy([X,Y],[Z,W]) this will find H(X,Y/Z,W).. you can use it for any combination of joint entropies Please validate this function before using it

    標簽: entropy evaluate command matrix

    上傳時間: 2017-09-10

    上傳用戶:caozhizhi

  • This is a comparison foundation construction of data example code, the function is quite complete, w

    This is a comparison foundation construction of data example code, the function is quite complete, was myself debugs the successful procedure, might again on Visual c++ the direct movement

    標簽: construction comparison foundation complete

    上傳時間: 2013-12-30

    上傳用戶:cxl274287265

  • 包含一些大眾化的數學題目

    包含一些大眾化的數學題目,比如說buffon丟針問題、dijkstra的三色旗問題、找零錢問題、背包問題、無限位數的整數運算、最短路徑問題...

    標簽:

    上傳時間: 2014-01-05

    上傳用戶:athjac

  • 職業教育心理學

    1. 心理學家( )于1879年在德國的萊比錫大學建立了世界上第一個心理實驗室,從而使心理學成 為了一門獨立的科學。 A 艾賓浩斯(Ebbinghaus)B 繆勒(G.E.Muller)C 費希納(Fechner) D 馮特(W.Wundt) 2. 研究人的心理活動的一般規律的科學是指( )。 A 工程心理學 B 普通心理學 C 工程心理學 D 社會心理學

    標簽: 職業教育心理學

    上傳時間: 2015-03-10

    上傳用戶:FUCSAD

  • 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

  • small type antenna2

    一種帶寬闊展的小行化微帶天線

    標簽: antenna

    上傳時間: 2015-05-05

    上傳用戶:puzzle0612

  • Boost C++ Libraries 1.35.0

    Boost C++ Libraries Free peer-reviewed portable C++ source libraries Boost C++ Libraries 基本上是一個免費的 C++ 的跨平臺函式庫集合,基本上應該可以把它視為 C++ STL 的功能再延伸;他最大的特色在於他是一個經過「同行評審」(peer review,可參考維基百科)、開放原始碼的函式庫,而且有許多 Boost 的函式庫是由 C++ 標準委員會的人開發的,同時部分函式庫的功能也已經成為 C++ TR1 (Technical Report 1,參考維基百科)、TR2、或是 C++ 0x 的標準了。 它的官方網站是:http://www.boost.org/,包含了 104 個不同的 library;由於他提供的函式庫非常地多,的內容也非常地多元,根據官方的分類,大致上可以分為下面這二十類: 字串和文字處理(String and text processing) 容器(Containers) Iterators 演算法(Algorithms) Function objects and higher-order programming 泛型(Generic Programming) Template Metaprogramming Preprocessor Metaprogramming Concurrent Programming 數學與數字(Math and numerics) 正確性與測試(Correctness and testing) 資料結構(Data structures) 影像處理(Image processing) 輸入、輸出(Input/Output) Inter-language support 記憶體(Memory) 語法分析(Parsing) 程式介面(Programming Interfaces) 其他雜項 Broken compiler workarounds 其中每一個分類,又都包含了一個或多個函式庫,可以說是功能相當豐富。

    標簽: Boost C++ Libraries

    上傳時間: 2015-05-15

    上傳用戶:fangfeng

  • 演算法評估

    演算法評估 用空間和時間評估演算法效能 時間複雜度(Time Complexity) 空間複雜度(Space Complexity) 效能評估 效能分析(Performance Analysis):事前評估 效能評估(Performance Measurement):效能量測 評估時均假設處理的資料量為n到無窮大

    標簽: 演算

    上傳時間: 2015-06-13

    上傳用戶:18007270712

  • Youtube影片下載器

    可將Youtube網站上傳之影片下載封存欣賞

    標簽: Youtube影片下載器

    上傳時間: 2015-11-12

    上傳用戶:s2277336

主站蜘蛛池模板: 福安市| 临城县| 洪洞县| 汾阳市| 龙陵县| 泽州县| 锡林郭勒盟| 蓝田县| 五峰| 余庆县| 玉树县| 桂阳县| 桦川县| 八宿县| 安国市| 铁岭县| 天门市| 威远县| 康保县| 罗源县| 恩施市| 寿宁县| 绥芬河市| 穆棱市| 安图县| 玉龙| 观塘区| 罗甸县| 砀山县| 稷山县| 富平县| 那坡县| 友谊县| 酒泉市| 东莞市| 香格里拉县| 韶山市| 澎湖县| 淮滨县| 盐边县| 黎城县|