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

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

ROUTINES

  • The software implements particle filtering and Rao Blackwellised particle filtering for conditionall

    The software implements particle filtering and Rao Blackwellised particle filtering for conditionally Gaussian Models. The RB algorithm can be interpreted as an efficient stochastic mixture of Kalman filters. The software also includes efficient state-of-the-art resampling ROUTINES. These are generic and suitable for any application. For details, please refer to Rao-Blackwellised Particle Filtering for Fault Diagnosis and On Sequential Simulation-Based Methods for Bayesian Filtering After downloading the file, type "tar -xf demo_rbpf_gauss.tar" to uncompress it. This creates the directory webalgorithm containing the required m files. Go to this directory, load matlab and run the demo.

    標(biāo)簽: filtering particle Blackwellised conditionall

    上傳時(shí)間: 2014-12-05

    上傳用戶:410805624

  • The algorithms are coded in a way that makes it trivial to apply them to other problems. Several gen

    The algorithms are coded in a way that makes it trivial to apply them to other problems. Several generic ROUTINES for resampling are provided. The derivation and details are presented in: Rudolph van der Merwe, Arnaud Doucet, Nando de Freitas and Eric Wan. The Unscented Particle Filter. Technical report CUED/F-INFENG/TR 380, Cambridge University Department of Engineering, May 2000. After downloading the file, type "tar -xf upf_demos.tar" to uncompress it. This creates the directory webalgorithm containing the required m files. Go to this directory, load matlab5 and type "demo_MC" for the demo.

    標(biāo)簽: algorithms problems Several trivial

    上傳時(shí)間: 2014-01-20

    上傳用戶:royzhangsz

  • This sample is a working example of Exabyte2 Tape Minidriver. This module contains device-specific r

    This sample is a working example of Exabyte2 Tape Minidriver. This module contains device-specific ROUTINES for the Exabyte EXB-8500 tape drive.

    標(biāo)簽: This device-specific Minidriver Exabyte2

    上傳時(shí)間: 2013-12-23

    上傳用戶:wfeel

  • Real-Time Digital Signal Processing Implementations, Applications, and Experiments with the TMS320C

    Real-Time Digital Signal Processing Implementations, Applications, and Experiments with the TMS320C55x John Wiley & Sons, Inc. 2001 By Sen M. Kuo and Bob H. Lee 4.6.1 Experiment 4A - Twiddle Factor Generation 4.6.2 Experiment 4B - Complex Data Operation 4.6.3 IExperiment 4C - mplementation of DFT 4.6.4 Experiment 4D - Experiment Using Assembly ROUTINES

    標(biāo)簽: Implementations Applications Experiments Processing

    上傳時(shí)間: 2016-05-24

    上傳用戶:ikemada

  • Enclosed in this distribution are four projects: MD5DLLTest: Visual basic project which runs the

    Enclosed in this distribution are four projects: MD5DLLTest: Visual basic project which runs the MD5 test suite against a MD5 DLL (see below). VbMD5: A Visual Basic native MD5 message digest class based on the RSA reference implementation. md5DLL: A C project which generates a simple Win32 DLL with the MD5 message digest ROUTINES using the RSA reference implementation. MD5Java: A Java implementation of the MD5 message digest algorithm based on the RSA reference implmentation. Let me know if this has any use! Robert M. Hubley hubley@u.washington.edu

    標(biāo)簽: distribution MD5DLLTest Enclosed projects

    上傳時(shí)間: 2016-06-08

    上傳用戶:com1com2

  • C51源程序集錦 This a demo program showing a way to perform simultaneous RS-232 transmit and receive us

    C51源程序集錦 This a demo program showing a way to perform simultaneous RS-232 transmit and receive using only one hardware timer. The transmit and receive ROUTINES divide each bit time into 4 slices to allow synchronizing to incoming data that may be out of synch with outgoing data.

    標(biāo)簽: simultaneous transmit program perform

    上傳時(shí)間: 2017-02-08

    上傳用戶:yangbo69

  • SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems

    SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. The library is written in C and is callable from either C or Fortran. The library ROUTINES will perform an LU decomposition with partial pivoting and triangular system solves through forward and back substitution. The LU factorization ROUTINES can handle non-square matrices but the triangular solves are performed only for square matrices. The matrix columns may be preordered (before factorization) either through library or user supplied ROUTINES. This preordering for sparsity is completely separate from the factorization. Working precision iterative refinement subROUTINES are provided for improved backward stability. ROUTINES are also provided to equilibrate the system, estimate the condition number, calculate the relative backward error, and estimate error bounds for the refined solutions.

    標(biāo)簽: nonsymmetric solution SuperLU general

    上傳時(shí)間: 2017-02-20

    上傳用戶:lepoke

  • *** HyperString v6.0 *** (c)1996-2000 EFD Systems, All rights reserved

    *** HyperString v6.0 *** (c)1996-2000 EFD Systems, All rights reserved efd@mindspring.com *** THIS IS NOT PUBLIC DOMAIN SOFTWARE *** See below for license agreement, disclaimer, installation and use. Introduction --------------------------------------------------------- Welcome to HyperString! One of the most significant new features with Delphi32 is long dynamic strings. However, the built-in functions don t really exploit the full potential of these new strings. HyperString provides over 400 fast, efficient string management ROUTINES to help you realize the full power of this highly versatile new data type.

    標(biāo)簽: HyperString reserved Systems rights

    上傳時(shí)間: 2017-07-04

    上傳用戶:mhp0114

  • 代碼大全Steve McConnell著 919頁高清文字版

    軟件開發(fā)人員必備工具書,,目錄如下Welcome to Software Construction [1]1.1 What Is Software Construction?1.2 Why Is Software Construction Important?1.3 How to Read This Book......7.1 Valid Reasons to Create a Routine7.2 Design at the Routine Level7.3 Good Routine Names7.4 How Long Can a Routine Be?7.5 How to Use Routine Parameters7.6 Special Considerations in the Use of Functions7.7 Macro ROUTINES and Inline ROUTINESDefensive Programming [5.6 + new material]8.1 Protecting Your Program From Invalid Inputs8.2 Assertions8.3 Error Handling Techniques8.4 Exceptions8.5 Barricade Your Program to Contain the Damage Caused by Errors8.6 Debugging Aids8.7 Determining How Much Defensive Programming to Leave in Production Code8.8 Being Defensive About Defensive ProgrammingThe Pseudocode Programming Process [4+new material]9.1 Summary of Steps in Building Classes and ROUTINES9.2 Pseudocode for Pros9.3 Constructing ROUTINES Using the PPP9.4 Alternatives to the PPP......

    標(biāo)簽: 代碼大全 軟件開發(fā)

    上傳時(shí)間: 2021-12-08

    上傳用戶:20125101110

  • VIP專區(qū)-單片機(jī)源代碼精選合集系列(72)

    eeworm.com VIP專區(qū) 單片機(jī)源碼系列 71資源包含以下內(nèi)容:1. PWM模塊單片機(jī)的步進(jìn)電機(jī)細(xì)分驅(qū)動(dòng)的理論和方法介紹.pdf2. 基于狀態(tài)分析的鍵盤管理軟件設(shè)計(jì).pdf3. 單片機(jī)的步進(jìn)電機(jī)控制器設(shè)計(jì)介紹.pdf4. 單片機(jī)溫度控制系統(tǒng)的設(shè)計(jì)及實(shí)現(xiàn).pdf5. 基于單片機(jī)的步進(jìn)電機(jī)細(xì)分技術(shù)介紹.pdf6. 基于單片機(jī)的太陽能電池自動(dòng)跟蹤系統(tǒng)的設(shè)計(jì).zip7. 單片機(jī)的步進(jìn)電機(jī)細(xì)分技術(shù)研究介紹.pdf8. 氣體壓縮因子Z的在線修正與單片機(jī)實(shí)現(xiàn).pdf9. Emulating a synchronous serial.pdf10. 基于單片機(jī)的霍爾傳感器測試系統(tǒng)介紹.pdf11. 使用軟件程序仿真C500微控制器系列SSC(同步串行通道)功.pdf12. MPC106 PCI Bridge/Memory Contr.pdf13. 單片機(jī)以太網(wǎng)通訊的實(shí)現(xiàn)介紹.pdf14. MPC106 PCI橋/存儲(chǔ)器控制器硬件規(guī)范說明.pdf15. USB Demonstration for DK3200 w.pdf16. 對(duì)帶有uPSD3234A的DK3200的USB演示.pdf17. An easy way to work with Exter.pdf18. 用外部設(shè)備設(shè)置32位微控制器TriCore的中斷的指令及方法.pdf19. P90CL301 I2C driver ROUTINES.pdf20. Input Signal Rise and Fall Tim.pdf21. P90CL301 IIC驅(qū)動(dòng)電路的例行測試及其程序.pdf22. 用51單片機(jī)實(shí)現(xiàn)公歷與農(nóng)歷星期的轉(zhuǎn)換.pdf23. 介紹C16x系列微控制器的輸入信號(hào)升降時(shí)序圖及特性.pdf24. XA-S3 I2C driver software.pdf25. 萬年歷算法.pdf26. MCS-51單片機(jī)對(duì)步進(jìn)電機(jī)控制的實(shí)現(xiàn).pdf27. XA-S3的IIC接口的驅(qū)動(dòng)器軟件程序(C語言).pdf28. Reading and Writing iButtons v.pdf29. 通用單片機(jī)試驗(yàn)板原理圖.pdf30. I2C slave ROUTINES for the 87L.pdf31. Philips微控制器在LIN中的應(yīng)用.pdf32. MPC7400 Part Number Speci&THOR.pdf33. 87LPC76X的IIC從程序.pdf34. 基于P87C591的CAN總線系統(tǒng)智能節(jié)點(diǎn)設(shè)計(jì).pdf35. MPC7400l零件號(hào)碼規(guī)范說明.pdf36. Using the 87LPC76X microcontro.pdf37. Control System of Stepp ingMot.pdf38. 68HC05K0 Infra-red Remote Cont.pdf39. 87C576微控制器的在線編程.pdf40. CAN與RS232轉(zhuǎn)換節(jié)點(diǎn)的設(shè)計(jì)與實(shí)現(xiàn).pdf41. 68HC05K0實(shí)現(xiàn)紅外遠(yuǎn)程控制鍵盤的應(yīng)用.pdf42. 單片機(jī)外圍線路設(shè)計(jì).rar43. 單片機(jī)常用芯片和器件手冊(cè).rar44. IO口狀態(tài)切換說明.pdf45. 中斷技術(shù).ppt.ppt46. 并行接口.ppt47. DMA技術(shù) -ppt.ppt48. 結(jié)構(gòu)緊湊的Li+電池充電器.pdf49. 定時(shí)與計(jì)數(shù)技術(shù).ppt50. 微機(jī)總線與接口標(biāo)準(zhǔn).ppt51. 中斷的概念及51單片機(jī)的中斷系統(tǒng).ppt52. 輸入輸出與接口技術(shù).ppt53. 單片機(jī)應(yīng)用概述.ppt54. 現(xiàn)代微機(jī)原理與接口技術(shù).rar55. 單片機(jī)應(yīng)用系統(tǒng)設(shè)計(jì)的基本方法.ppt56. PCB可測性設(shè)計(jì)布線規(guī)則之建議―從源頭改善可測率.pdf57. 單片機(jī)A/D和D/A應(yīng)用接口技術(shù).ppt58. 匯編語言上機(jī)過程.ppt.ppt59. PWM的調(diào)速原理與應(yīng)用—小車調(diào)速.ppt60. 匯編語言在數(shù)據(jù)處理中的應(yīng)用.ppt61. 定時(shí)器/計(jì)數(shù)器基礎(chǔ).ppt62. 驅(qū)動(dòng)程序與應(yīng)用程序的接口.doc63. 外部中斷應(yīng)用程序設(shè)計(jì)范例.ppt64. 實(shí)驗(yàn)指導(dǎo)書 (TPC-H實(shí)驗(yàn)臺(tái)C語言版).pdf65. 匯編語言程序設(shè)計(jì)案例—?jiǎng)討B(tài)顯示/障礙物檢測/障礙物方位檢測.rar66. 指令功能及匯編語言程序設(shè)計(jì).rar67. ispdown V2.3 最新版 (可用Altera下載線進(jìn).rar68. MCS-51單片機(jī)的編程應(yīng)用范例.pdf69. 51編程指南--MCSÉ-51 Program.rar70. 多運(yùn)動(dòng)目標(biāo)跟蹤及連通域標(biāo)記方法.pdf71. 很經(jīng)典的仿真器自制資料.rar72. mcs-51指令集.rar73. 自制51單片機(jī)編程器.rar74. CAN總線與USB的轉(zhuǎn)接技術(shù).pdf75. 自制ATMEL 89系列FLASH單片機(jī)編程器.rar76. 基于ARM處理器LPC2142的高速數(shù)據(jù)采集卡設(shè)計(jì).pdf77. 微機(jī)測量系統(tǒng)中的抗干擾措施.pdf78. PGM89 51Flash單片機(jī)編程器V3.0.rar79. 改善基于微控制器的應(yīng)用的瞬態(tài)免疫性能.rar80. KEIL C51開發(fā)軟件操作使用視頻教程.rar81. 自制微型51/AVR通用編程器.rar82. C51單片機(jī)視頻教程.RAR83. 自制51編程器資料.rar84. 基于單片機(jī)89C51和89C2051點(diǎn)陣LED圖文顯示.pdf85. 全遙控6聲道AV機(jī)的匯編程序.rar86. keil c51中文說明.pdf87. 基于AT89C2051的紅外遙控學(xué)習(xí)器源程序.rar88. 微型計(jì)算機(jī)課程設(shè)計(jì)論文—通用微機(jī)發(fā)聲程序的匯編設(shè)計(jì).rar89. 從PCI總線的-12V電源獲得3.3V電壓.pdf90. DS1302+AT89S52+LED時(shí)鐘程序(C語言源代碼+.rar91. 樂曲發(fā)聲及動(dòng)畫程序.rar92. 單片開關(guān)電源的設(shè)計(jì)和應(yīng)用.rar93. 51單片機(jī)試驗(yàn)板電路圖-原理圖.rar94. DS1820 C51 子程序 (一線數(shù)據(jù)傳輸).doc95. 模擬串口通訊程序(51匯編代碼編寫).doc96. 8051單片機(jī)教程 (word版).rar97. 串行編程器源程序(Keil C語言).rar98. 用C51寫的普通拼音輸入法源程序代碼.zip99. EasyIsp下載線電路圖.rar100. 采用18b20芯片的溫度測量C51源程序.rar

    標(biāo)簽: 傳感器 檢測技術(shù)

    上傳時(shí)間: 2013-06-02

    上傳用戶:eeworm

主站蜘蛛池模板: 靖远县| 彰化市| 江口县| 台州市| 改则县| 喀什市| 拉孜县| 自贡市| 枣庄市| 永兴县| 武城县| 海南省| 柏乡县| 石阡县| 高雄县| 南部县| 义马市| 霍林郭勒市| 东乡县| 丰镇市| 关岭| 鄯善县| 永善县| 郯城县| 饶河县| 福安市| 嵩明县| 九寨沟县| 政和县| 泰宁县| 深水埗区| 仁怀市| 海丰县| 八宿县| 延吉市| 白朗县| 永泰县| 麟游县| 马关县| 郑州市| 长宁县|