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

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

rotate

  • It s a note about data structure. Tree---self balancing and rotate

    It s a note about data structure. Tree---self balancing and rotate

    標簽: balancing structure rotate about

    上傳時間: 2014-03-11

    上傳用戶:stewart·

  • rotate and resize window in x system

    rotate and resize window in x system

    標簽: rotate resize window system

    上傳時間: 2013-12-30

    上傳用戶:whenfly

  • class for work with 3d Matrix: rotate, transmit, scale, multiple

    class for work with 3d Matrix: rotate, transmit, scale, multiple

    標簽: multiple transmit Matrix rotate

    上傳時間: 2016-11-23

    上傳用戶:fnhhs

  • 給MIPS用的LCD rotate的Driver

    給MIPS用的LCD rotate的Driver

    標簽: Driver rotate MIPS LCD

    上傳時間: 2014-01-03

    上傳用戶:15736969615

  • 基于AVR單片機的閉環控制系統

      針對科研實驗中對拉壓千斤頂加載過程控制的需要,采用ATmega128單片機控制步進電機進而實現對執行系統的電動泵站實行自動控制。對力和位移的數據采集與處理及用步進電機控制電動泵站手柄的技術細節作了重點描述。通過單片機的A/D變換器對AMP放大模塊采集的電橋信號作量化處理,千斤頂的操控手柄位置依電動油泵閥門開啟的方向和大小作若干定位,單片機根據力或位移傳感器信號,實時控制步進電機驅動手柄旋轉到相應操控位置。   Abstract:   This article describes the use of ATmega128 AVR microcontroller series of DBS electric pumping stations and QF100/200 separate twoway hydraulic jack to automate the process of manipulating the work of the technical content. Articles on force and displacement data acquisition and processing, and stepper motor control electric pump with the handle of the key technical details were described. Through the MCU’s A / D converter module is collected on the AMP amplification quantify the signal bridge, jack handle position control valve opening according to the direction of electric pumps for a number of positioning and size of the microcontroller based on force or displacement sensor signals, real-time control stepper motor drive control handle rotate to the appropriate location.  

    標簽: AVR 單片機 閉環控制

    上傳時間: 2014-01-16

    上傳用戶:hasan2015

  • 單片機指令系統

    單片機指令系統 3.1 MCS-51指令簡介 3.2 指令系統 3.1  MCS-51指令簡介 二、MCS-51系列單片機指令系統分類 按尋址方式分為以下七種:按功能分為以下四種: 1、立即立即尋址         1、數據傳送指令位操 2、直接尋址             2、算術運算指令 3、寄存器尋址           3、邏輯運算指令 4、寄存器間接尋址指令   4、控制轉移類指令 5、相對尋址             5、位操作指令 6、變址尋址 7、位尋址 三、尋址方式 3、寄存器間接尋址    MOV A, @R1        操作數是通過寄存器間接得到的。 4、立即尋址               MOV  A, #40H        操作數在指令中直接給出。 5、基址寄存器加變址寄存器尋址        以DPTR或PC為基址寄存器,以A為變址寄存器,        以兩者相加形成的16位地址為操作數的地址。                   MOVC A, @A+DPTR                   MOVC A, @A+PC 四、指令中常用符號說明 Rn——當前寄存器區的8個工作寄存器R0~R7(n=0~7); Ri——當前寄存器區可作地址寄存器的2個工作寄存器R0和R1(i=0,1); direct——8位內部數據存儲器單元的地址及特殊功能寄存器的地址; #data——表示8位常數(立即數); #datal6——表示16位常數; add 16——表示16位地址; addrll——表示11位地址; rel——8位帶符號的地址偏移量; bit——表示位地址; @——間接尋址寄存器或基址寄存器的前綴; ( )——表示括號中單元的內容 (( ))——表示間接尋址的內容; 五、MCS-51指令簡介 1. 以累加器A為目的操作數的指令 2.  以Rn為目的操作數的指令 3.  以直接地址為目的操作數的指令 4.  以寄存器間接地址為目的操作數指令 應用舉例1 8段數碼管顯示 應用舉例2 3.2  指令系統 2、堆棧操作指令  3.  累加器A與外部數據傳輸指令 4.  查表指令    MOVC  A,   @A+PC  例子: 5.  字節交換指令 6.  半字節交換指令 二、算術操作類指令 PSW寄存器 2.  帶進位加法指令 3.  加1指令 4.  十進制調整指令 5.  帶借位減法指令(Subtraction) 6.  減1指令(Decrease) 7.   乘法指令(Multiplication) 8.  除法指令(Division)        三、邏輯運算指令 1.  簡單邏輯操作指令 2.  循環指令 帶進位左循環指令(rotate  Accumulator Left   through  Carry  flag)      右循環指令(rotate  Accumulator  Right) 帶進位右循環指令(rotate  A  Right  with  C) 3.   邏輯與指令 4.  邏輯或指令 5.  邏輯異或指令 四、控制轉移類指令 1.  跳轉指令 相對轉移指令   SJMP   rel           PC←(PC)+2                                                                                                                            PC←(PC)+rel 程序中標號與地址之間的關系 2.  條件轉移指令 3.  比較不相等轉移指令 4.  減 1 不為 0 轉移指令 5.  調用子程序指令 7.  中斷返回指令 五、位操作指令 1.  數據位傳送指令 2.  位變量邏輯指令 3.  條件轉移類指令

    標簽: 單片機 指令系統

    上傳時間: 2013-10-27

    上傳用戶:xuanjie

  • 關于半色調編碼計算全息圖的信息隱藏Matlab程序的說明: 算法實現主程序為CGHwatermark; 位相恢復函數為phaseSL; 用計算全息記錄已知振幅和位相的復波前函數為Hol

    關于半色調編碼計算全息圖的信息隱藏Matlab程序的說明: 算法實現主程序為CGHwatermark; 位相恢復函數為phaseSL; 用計算全息記錄已知振幅和位相的復波前函數為Hologen; 半色調編碼函數為AMhalftone; 嵌入信息的提取直接調用Matlab自帶的FFT2函數; 主程序的函數調用關系如下 讀入宿主信息和水印信息-----------phaseSL--->Hologen--->AMhalftone(完成嵌入)--->FFT2(提取水印信息) 主程序結果保存于holo&mark文件夾 對算法魯棒性測試的程序: 1. 對于剪切操作 Cliptest 結果存放于cliptest文件夾 2. 對于縮放操作 zoomtest 結果存放于zoomtest文件夾 3. 對于旋轉操作 rotatetest 結果存放于rotate文件夾 4. 對于濾波操作 filtertest 結果存放于filtertest文件夾 5. 測試算法的時間效率 timetest 6. 分析嵌入信息后圖像質量與參數alpha,tao的關系 msetest

    標簽: CGHwatermark phaseSL Matlab Hol

    上傳時間: 2016-10-17

    上傳用戶:lgnf

  • An interactive water fountain. A realistic water source in your pocket with full control. Contro

    An interactive water fountain. A realistic water source in your pocket with full control. Controls: UP/DOWN - go closer/further LEFT/RIGHT - rotate # - stop rotation 1/7 - rotate camera up/down 3/9 - change water pressure 4/6 - change water rendering complexity 2/8 - ascend/descend 0 - bullet time 5 - 25 FPS limiter on/off * - HUD on/off

    標簽: water interactive realistic fountain

    上傳時間: 2013-12-19

    上傳用戶:yuchunhai1990

  • Learn how to: * Tokenize a null-terminated string * Create a search and re

    Learn how to: * Tokenize a null-terminated string * Create a search and replace function for strings * Implement subtraction for string objects * Use the vector, deque, and list sequence containers * Use the container adaptors stack, queue, and priority_queue * Use the map, multimap, set, and multiset associative containers * Reverse, rotate, and shuffle a sequence * Create a function object * Use binders, negators, and iterator adapters * Read and write files * Use stream iterators to handle file I/O * Use exceptions to handle I/O errors * Create custom inserters and extractors * Format date, time, and numeric data * Use facets and the localization library * Overload the [ ], ( ), and -> operators * Create an explicit constructor * And much, much more

    標簽: null-terminated Tokenize Create string

    上傳時間: 2014-01-18

    上傳用戶:yph853211

  • this is very good application for face traccking.it contains more and good differnt features.if u ro

    this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.

    標簽: good application traccking contains

    上傳時間: 2014-07-25

    上傳用戶:caiiicc

主站蜘蛛池模板: 金湖县| 河曲县| 电白县| 安阳县| 贵定县| 平山县| 南和县| 甘南县| 南昌县| 冷水江市| 杭锦旗| 高雄县| 拉萨市| 霍城县| 绥化市| 巴林左旗| 三河市| 重庆市| 大姚县| 施秉县| 永川市| 枣庄市| 孟村| 缙云县| 宣武区| 新源县| 高邑县| 普兰店市| 邹城市| 肇源县| 枣阳市| 安陆市| 安远县| 静海县| 九龙城区| 本溪市| 北碚区| 库车县| 四平市| 建始县| 肇东市|