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

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

無(wú)觸點(diǎn)

  • % EM algorithm for k multidimensional Gaussian mixture estimation % % Inputs: % X(n,d) - input da

    % EM algorithm for k multidimensional Gaussian mixture estimation % % Inputs: % X(n,d) - input data, n=number of observations, d=dimension of variable % k - maximum number of Gaussian components allowed % ltol - percentage of the log likelihood difference between 2 iterations ([] for none) % maxiter - maximum number of iteration allowed ([] for none) % pflag - 1 for plotting GM for 1D or 2D cases only, 0 otherwise ([] for none) % Init - structure of initial W, M, V: Init.W, Init.M, Init.V ([] for none) % % Ouputs: % W(1,k) - estimated weights of GM % M(d,k) - estimated mean vectors of GM % V(d,d,k) - estimated covariance matrices of GM % L - log likelihood of estimates %

    標簽: multidimensional estimation algorithm Gaussian

    上傳時間: 2013-12-03

    上傳用戶:我們的船長

  • 設平面上分布著n個白點和n個黑點

    設平面上分布著n個白點和n個黑點,每個點用一對坐標(x, y)表示。一個黑點b=(xb,yb)支配一個白點w=(xw, yw)當且僅當xb>=xw和yb>=yw。若黑點b支配白點w,則黑點b和白點w可匹配(可形成一個匹配對)。在一個黑點最多只能與一個白點匹配,一個白點最多只能與一個黑點匹配的前提下,求n個白點和n個黑點的最大匹配對數。

    標簽: 分布

    上傳時間: 2013-12-20

    上傳用戶:米卡

  • 問題描述: 1.初始化輸入:N-參賽學校總數

    問題描述: 1.初始化輸入:N-參賽學校總數,M-男子競賽項目數,W-女子競賽項目數; 各項目名次取法有如下幾種: 取前5名:第1名得分 7,第2名得分 5,第3名得分3,第4名得分2,第5名得分 1; 取前3名:第1名得分 5,第2名得分 3,第3名得分2; 用戶自定義:各名次權值由用戶指定。 2.由程序提醒用戶填寫比賽結果,輸入各項目獲獎運動員的信息。 3.所有信息記錄完畢后,用戶可以查詢各個學校的比賽成績,生成團體總分報表,查看參賽學校信息和比賽項目信息等。

    標簽: 初始化 輸入

    上傳時間: 2014-02-08

    上傳用戶:redmoons

  • 希爾排序(縮小增量法) 排序過程:先取一個正整數d1<n

    希爾排序(縮小增量法) 排序過程:先取一個正整數d1<n,把所有相隔d1的記錄放一組,組內進行直接插入排序;然后取d2<d1,重復上述分組和排序操作;直至di=1,即所有記錄放進一個組中排序為止

    標簽: 排序 lt 增量 過程

    上傳時間: 2013-12-30

    上傳用戶:waizhang

  • #include "iostream.h" #include "iomanip.h" #define N 20 //學習樣本個數 #define IN 1 //輸入層神經元數目 #define

    #include "iostream.h" #include "iomanip.h" #define N 20 //學習樣本個數 #define IN 1 //輸入層神經元數目 #define HN 8 //隱層神經元數目 #define ON 1 //輸出層神經元數目 double P[IN] //單個樣本輸入數據 double T[ON] //單個樣本教師數據 double W[HN][IN] //輸入層至隱層權值 double V[ON][HN] //隱層至輸出層權值 double X[HN] //隱層的輸入 double Y[ON] //輸出層的輸入 double H[HN] //隱層的輸出

    標簽: define include iostream iomanip

    上傳時間: 2014-01-01

    上傳用戶:凌云御清風

  • 求質數法 判斷n是否為質數 判斷n是否為質數時

    求質數法 判斷n是否為質數 判斷n是否為質數時,將n除以n以下的整數直至2為止,以觀察n能 除盡,這時如有被除盡的數,便被視為非質數而脫離出回圈。到了最後如無除盡的數,則此數即為質數。

    標簽:

    上傳時間: 2013-12-27

    上傳用戶:xcy122677

  • 無意間在網上找到這本書,已經絕版了也很難找到所以放上來分享給大家,提供大家學習 本書對SCSI的介紹偏重於軟件開發方面。在介紹了SCSI的基本概念後

    無意間在網上找到這本書,已經絕版了也很難找到所以放上來分享給大家,提供大家學習 本書對SCSI的介紹偏重於軟件開發方面。在介紹了SCSI的基本概念後,介紹了SCSI編程的程序化方法,並在DOS和Windows下研究了ASPI(高級SCSI編程接口),在Windows和Windows NT下研究了ASPI32的擴展,在介紹SCSI在UNIX平臺的應用時,把重點放在了Linux平臺上

    標簽: SCSI 基本概念

    上傳時間: 2014-01-07

    上傳用戶:qunquan

  • //初始化 initscr() //獲得屏幕尺寸 getmaxyx(stdscr, h, w) //畫背景 for(i=0 i<h i++)

    //初始化 initscr() //獲得屏幕尺寸 getmaxyx(stdscr, h, w) //畫背景 for(i=0 i<h i++) for(j=0 j<w j++){ mvaddch(i, j, ACS_CKBOARD) } refresh() //建立窗口 pad = newpad(80, 128) for(i=0 i<80 i++){ char line[128] sprintf(line, "This line in pad is numbered d\n", i) mvwprintw(pad, i, 0, line) } //刷新屏幕 refresh() prefresh(pad, 0, 1, 5, 10, 20, 45) for(i=0 i<50 i++){ prefresh(pad, i+1, 1, 5, 10, 20, 45) usleep(30000) } //等待按鍵 getch()

    標簽: getmaxyx initscr stdscr for

    上傳時間: 2014-08-30

    上傳用戶:龍飛艇

  • Cisco E-DI supports perl scripting through the CLI. This feature automates many of the server and n

    Cisco E-DI supports perl scripting through the CLI. This feature automates many of the server and network administration tasks. This section explains how to enable and disable the perl scripting service, and how to use Cisco E-DI Perl API for daily tasks. When a perl script is implemented by an administrator or a user, the script automatically inherits the user s security privileges and the user s operational context (either server or network). Each invocation of a

    標簽: automates scripting the supports

    上傳時間: 2017-07-06

    上傳用戶:a673761058

  • c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, e

    c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, ebook. Programming Microcontrollers in C (Ted Van Sickle) C Programming for Microcontrollers (Joe Pardue SmileyMicros.com ) Programming 16-Bit PIC Microcontrollers in C (Jucio di jasio ) C Programming for AVR Programming embedded system I,II (Michael J . Pont ) ( các tài liệ u này đ ã down load về )

    標簽: 7919 7873 7843 7875

    上傳時間: 2017-07-29

    上傳用戶:壞壞的華仔

主站蜘蛛池模板: 金阳县| 宁津县| 右玉县| 梅河口市| 米林县| 东阳市| 慈利县| 成安县| 马尔康县| 陈巴尔虎旗| 东乡族自治县| 陆河县| 长阳| 元谋县| 阳春市| 鸡西市| 天津市| 堆龙德庆县| 获嘉县| 谢通门县| 连平县| 佛山市| 广南县| 颍上县| 武陟县| 庆安县| 珠海市| 济宁市| 汝南县| 甘肃省| 阿瓦提县| 舞钢市| 右玉县| 金平| 郁南县| 措勤县| 大洼县| 贵南县| 巴中市| 东乡族自治县| 郧西县|