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

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

progra<b>m</b><b>m</b>ing

  • 1.用隨機數方法產生頁面走向

    1.用隨機數方法產生頁面走向,頁面走向長度為L(15<=L<=20),L由控制臺輸入。 2.根據頁面走向,分別采用Optinal、FIFO、LRU算法進行頁面置換,統計缺頁率。 3.假定可用內存塊為m(3<=m<=5),m由控制臺輸入,初始時,作業頁面都不在內存。

    標簽: 隨機數

    上傳時間: 2017-01-21

    上傳用戶:teddysha

  • 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

  • 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

  • 運動會分數統計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

  • 單鏈表習題

    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

  • 51單片機智能熱水器控制系統設計源代碼

    基于STC89C51單片機的智能電熱水器的控制器的設計,要達到的控制要求有:(1)用LCD1602液晶顯示水溫、設置上下限和定時時間,(2)水溫檢測顯示范圍為00~99℃,精度為±1℃。(3)溫度預設范圍為0~99℃,當檢測溫度低于預設溫度時,開始加熱;檢測溫度高于預設溫度時,停止加熱。(4)設置4個程序按鍵。分別問設置按鍵、加鍵、減鍵、確定。(5)可以紅外遙控,通過紅外一體接收探頭接收遙控器信號,執行與主板按鍵同等功能。(6)有水位檢測功能,無水自動上水,無水不加熱。//外部中斷解碼程序_外部中斷0void intersvr1(void) interrupt 2 using 1{ TR0=1; Tc=TH0*256+TL0;//提取中斷時間間隔時長 TH0=0;  TL0=0;         //定時中斷重新置零 if((Tc>Imin)&&(Tc<Imax)) {  m=0; f=1; return; }       //找到啟始碼 if(f==1) { if(Tc>Inum1&&Tc<Inum3)     {    Im[m/8]=Im[m/8]>>1|0x80; m++;     }    if(Tc>Inum2&&Tc<Inum1)     {      Im[m/8]=Im[m/8]>>1; m++; //取碼  }  if(m==32)     {      m=0;        f=0;      if(Im[2]==~Im[3])       {           IrOK=1;   TR0=0;     }      else IrOK=0;   //取碼完成后判斷讀碼是否正確    }               //準備讀下一碼 }}

    標簽: 51單片機 智能熱水器 控制系統

    上傳時間: 2022-05-14

    上傳用戶:

主站蜘蛛池模板: 临安市| 西和县| 晋州市| 新邵县| 沁水县| 霞浦县| 梅河口市| 秭归县| 吉林市| 洞头县| 大埔区| 木里| 连江县| 武邑县| 高青县| 榆林市| 屏南县| 新泰市| 铜川市| 准格尔旗| 泸西县| 通道| 塔河县| 安徽省| 太和县| 漾濞| 嘉定区| 通渭县| 东明县| 平利县| 唐海县| 大兴区| 赣榆县| 榕江县| 屏东县| 雷州市| 集安市| 西乌珠穆沁旗| 惠安县| 温州市| 永泰县|