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

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

m-PA<b>m</b>

  • 漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation

    漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C

    標簽: the animation Simulate movement

    上傳時間: 2017-02-11

    上傳用戶:waizhang

  • AdaBoost, Adaptive Boosting, is a well-known meta machine learning algorithm that was proposed by Yo

    AdaBoost, Adaptive Boosting, is a well-known meta machine learning algorithm that was proposed by Yoav Freund and Robert Schapire. In this project there two main files 1. ADABOOST_tr.m 2. ADABOOST_te.m to traing and test a user-coded learning (classification) algorithm with AdaBoost. A demo file (demo.m) is provided that demonstrates how these two files can be used with a classifier (basic threshold classifier) for two class classification problem.

    標簽: well-known algorithm AdaBoost Adaptive

    上傳時間: 2014-01-15

    上傳用戶:qiaoyue

  • 簡單的單用戶ds-cdma系統仿真

    簡單的單用戶ds-cdma系統仿真,包含六個m文件,m序列作為擴頻碼。

    標簽: ds-cdma 單用戶 系統仿真

    上傳時間: 2013-11-27

    上傳用戶:笨小孩

  • 建立循環鏈表

    建立循環鏈表,實現選猴王的程序:輸入N只猴子,從第一只猴子開始報數(M),數到m的那只猴子就推出,如此循環,剩下的最后一直猴子就是猴王!!

    標簽: 循環

    上傳時間: 2013-12-19

    上傳用戶:851197153

  • 本代碼為編碼開關代碼

    本代碼為編碼開關代碼,編碼開關也就是數字音響中的 360度旋轉的數字音量以及顯示器上用的(單鍵飛梭開 關)等類似鼠標滾輪的手動計數輸入設備。 我使用的編碼開關為5個引腳的,其中2個引腳為按下 轉輪開關(也就相當于鼠標中鍵)。另外3個引腳用來 檢測旋轉方向以及旋轉步數的檢測端。引腳分別為a,b,c b接地a,c分別接到P2.0和P2.1口并分別接兩個10K上拉 電阻,并且a,c需要分別對地接一個104的電容,否則 因為編碼開關的觸點抖動會引起輕微誤動作。本程序不 使用定時器,不占用中斷,不使用延時代碼,并對每個 細分步數進行判斷,避免一切誤動作,性能超級穩定。 我使用的編碼器是APLS的EC11B可以參照附件的時序圖 編碼器控制流水燈最能說明問題,下面是以一段流水 燈來演示。

    標簽: 代碼 編碼開關

    上傳時間: 2017-07-03

    上傳用戶:gaojiao1999

  • Matlab 畫三維立體圖形

    Matlab 畫三維立體圖形 The aim of geom3d library is to handle and visualize 3D geometric primitives such as points, lines, planes, polyhedra... It provides low-level functions for manipulating 3D geometric primitives, making easier the development of more complex geometric algorithms.      Some features of the library are:   - creation of various shapes (3D points, 3D lines, planes, polyhedra...)     through an intuitive syntax.      Ex: createPlane(p1, p2, p3) to create a plane through 3 points.     - derivation of new shapes: intersection between 2 planes, intersection between     a plane and a line, between a sphere and a line...   - functions for 3D polygons and polyhedra. Polyhedra use classical vertex-faces     arrays (face array contain indices of vertices), and support faces with any     number of vertices. Some basic models are provided (createOctaedron,     createCubeoctaedron...), as well as some computation (like faceNormal or     centroid)      - manipulation of planar transformation. Ex.:     ROT = createRotationOx(THETA);     P2  = transformPoint3d(P1, ROT);     - direct drawing of shapes with specialized functions. Clipping is performed      automatically for infinite shapes such as lines or rays. Ex:     drawPoint3d([50 50 25; 20 70 10], 'ro');    % draw some points     drawLine3d([X0 Y0 Z0 DX DY DZ]);            % clip and draw straight line Some functions require the geom2d package.       Additional help is provided in geom3d/Contents.m file, as well as summary files     like 'points3d.m' or 'lines3d.m'.

    標簽: Matlab 畫三維立體圖形

    上傳時間: 2015-11-02

    上傳用戶:A1321

  • matlab

    pn碼的產生,m序列,M序列,可以用于偽隨機序列的分析與學習

    標簽: 程序仿真 pn碼的產生 m序列 M序列

    上傳時間: 2015-12-09

    上傳用戶:linxiaosong

  • 離散實驗 一個包的傳遞 用warshall

     實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); } 

    標簽: warshall 離散 實驗

    上傳時間: 2016-06-27

    上傳用戶:梁雪文以

  • 運動會分數統計c++

    參加運動會有n個學校,學校編號為1,2,3,……,n。比賽分成m個男子項目和w個女子項目。項目編號為男子1,2……m,女子m+1,m+2……m+w。不同的項目取前五名或前三名積分;取前五名的積分分別為:7、5、3、2、1,取前三名的積分分別為:5、3、2;哪些取前五名或者取前三名由自己設計。(m<=20,n<=20) 功能要求: 1、         可以輸出各個項目的前三名或前五名的成績; 2、         能統計各學校的總分 3、         可以按學校編號、學校總分、男女團體總分排序輸出 4、         可以按學校編號查詢學校某個項目的情況;可以按項目編號查詢取得前三名或者前五名的學校。

    標簽: 分數

    上傳時間: 2017-05-08

    上傳用戶:dai48625

  • 單鏈表習題

    鏈表習題 1. 編程實現鏈表的基本操作函數。 (1). void CreatList(LinkList &La,int m) //依次輸入m個數據,并依次建立各個元素結點,逐個插入到鏈表尾;建立帶表頭結點的單鏈表La; (2). void ListPrint(LinkList La)  //將單鏈表La的數據元素從表頭到表尾依次顯示。 (3).void ListInsert (LinkList &L,int i,ElemType e){ //在帶頭結點的單鏈表L中第i個數據元素之前插入數據元素e (4). void ListDelete(LinkList &La, int n, ElemType &e) //刪除鏈表的第n個元素,并用e返回其值。 (5). int Search(LinkList L, ElemType x) //在表中查找是否存在某個元素x,如存在則返回x在表中的位置,否則返回0。 (6). int ListLength(LinkList L)    //求鏈表L的表長 (7). void GetElem(LinkList L, int i, ElemType &e)   //用e返回L中第i個元素的值 鏈表的結點類型定義及指向結點的指針類型定義可以參照下列代碼:    typedef  struct  Node{     ElemType     data;       // 數據域   struct   Node  *next;    // 指針域 }LNode, *LinkList;

    標簽: 單鏈表

    上傳時間: 2017-11-15

    上傳用戶:BIANJIAXIN

主站蜘蛛池模板: 鄂尔多斯市| 望谟县| 兴山县| 洮南市| 牟定县| 钦州市| 图们市| 沿河| 遵义县| 贞丰县| 故城县| 洮南市| 江西省| 彰化市| 泸西县| 武川县| 昌乐县| 乃东县| 佛学| 凉城县| 化德县| 岳普湖县| 庆安县| 沁水县| 长阳| 无极县| 九寨沟县| 仁怀市| 视频| 孟州市| 宁城县| 元阳县| 化德县| 琼海市| 墨江| 连城县| 且末县| 宁化县| 清新县| 铅山县| 开化县|