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

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

溫度檢測(cè)系統(tǒng)

  • 摘要:電壓監測儀的校驗工作量大、 效率和精度低

    摘要:電壓監測儀的校驗工作量大、 效率和精度低, 為保證電壓監測儀性能指標, 研制了一種對單相電壓監測統計儀進行精度、 靈敏度、 諧波、 時間試驗的校驗裝置。裝置以高速單片機為核心, 利用豐富的P C機資源、 融合F P G A 技術、 點陣圖形液晶等技術, 實現監測儀誤差校驗過程的自動控制、微機數據管理、 程控操作、 故障保護。實驗結果表明裝置綜合誤差為0 . 1 級, 輸出電壓失真度小于0 . 5 , 系 統運行準確、 數據傳輸可靠、 操作方便及功能完善。

    標簽: 電壓監測儀 效率 精度

    上傳時間: 2014-07-05

    上傳用戶:stella2015

  • 百度程序筆試題和答案

    百度程序筆試題和答案,包括了C、C++、數據庫等編程題目。

    標簽: 百度 程序 筆試題

    上傳時間: 2014-11-29

    上傳用戶:xauthu

  • In C Algorithms for Real-Time DSP, author Paul M. Embree presents a complete guide to digital signal

    In C Algorithms for Real-Time DSP, author Paul M. Embree presents a complete guide to digital signal processing techniques in the C programming language. This book is structured in such a way that it will be most useful to the engineer who is familiar with DSP and the C language, but who is not necessarily an expert in both. All of the example programs in this book have been tested using standard C compilers in the UNIX and MS-DOS programming environments. In addition, the examples have been compiled using the real-time programing tools of specific real-time embedded DSP microprocessors (Analog Devices ADSP-21020 and ADSP-21062 Texas Instruments TMS320C30 and TMS320C40 and AT&T DSP32C) and then tested with real-time hardware using real-world signals.

    標簽: M. Algorithms Real-Time complete

    上傳時間: 2014-01-07

    上傳用戶:epson850

  • 含《Visual c++數字圖像處理典型算法及實現》這本書里所有源代碼

    含《Visual c++數字圖像處理典型算法及實現》這本書里所有源代碼,包括灰度的直方圖,線性變換,窗口變換,圖像的幾何算法等

    標簽: Visual 數字圖像處理 典型 代碼

    上傳時間: 2017-06-06

    上傳用戶:zm7516678

  • The C++ Cookbook will make your path to mastery much shorter. This practical, problem-solving guide

    The C++ Cookbook will make your path to mastery much shorter. This practical, problem-solving guide is ideal if you re an engineer, programmer, or researcher writing an application for one of the legions of platforms on which C++ runs. The algorithms provided in C++ Cookbook will jump-start your development by giving you some basic building blocks that you don t have to develop on your own.

    標簽: problem-solving practical Cookbook mastery

    上傳時間: 2017-06-07

    上傳用戶:yph853211

  • BP神經網絡程序,C語言源代碼 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "ma

    BP神經網絡程序,C語言源代碼 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "stdio.h" #include "time.h" #include "fstream.h" #define N 120 //學習樣本個數 #define IN 3 //輸入層神經元數目 #define HN 2 //隱層神經元數目 #define ON 2 //輸出層神經元數目 #define Z 20000 //舊權值保存-》每次study的權值都保存下來 double P[IN] //單個樣本輸入數據 double T[ON] //單個樣本教師數據 double U11[IN][HN] //輸入層至第一隱層權值 double V[HN][ON] //隱層至輸出層權值 double X1[HN] //第一隱層的輸入 double Y[ON] //輸出層的輸入 double H1[HN] //第一隱層的輸出 double O[ON] //輸出層的輸出 double YU_HN1[HN] //第一隱層的閾值 double YU_ON[ON] //輸出層的閾值 double err_m[N] //第m個樣本的總誤差 double a //學習效率 double alpha //動量因子

    標簽: include iostream iomanip stdlib

    上傳時間: 2017-06-15

    上傳用戶:xinzhch

  • Electronics Design Checklist C) 2003 Hank Wallace This is a checklist for electronics designers. T

    Electronics Design Checklist C) 2003 Hank Wallace This is a checklist for electronics designers. The idea is for engineers and technicians to share experiences and create a detailed checklist, which the individual designer can pare down to meet his or her specific needs. There are many details that go into the making of a first-run design success, and this checklist helps prevent Murphy s gremlins from marring an otherwise healthy design.

    標簽: Electronics electronics Checklist checklist

    上傳時間: 2017-06-17

    上傳用戶:ddddddos

  • C++實現的牛頓插值算法:對于n個點的插值

    C++實現的牛頓插值算法:對于n個點的插值,產生多項式的時間復雜度是O(n*n),最終進行一個點的計算的時間復雜度是O(n)。

    標簽: 插值 牛頓 算法

    上傳時間: 2017-06-20

    上傳用戶:libinxny

  • A user-space device driver can do many of the things that kernel drivers can t, such as perform a lo

    A user-space device driver can do many of the things that kernel drivers can t, such as perform a long-running computation, block while waiting for an event, or read files from the file system. Unlike kernel drivers, a user-space device driver can use other device drivers--that is, access the network, talk to a serial port, get interactive input from the user, pop up GUI windows, or read from disks. User-space drivers implemented using FUSD can be much easier to debug it is impossible for them to crash the machine, are easily traceable using tools such as gdb, and can be killed and restarted without rebooting even if they become corrupted. FUSD drivers don t have to be in C--Perl, Python, or any other language that knows how to read from and write to a file descriptor can work with FUSD. User-space drivers can be swapped out, whereas kernel drivers lock physical memory.

    標簽: user-space can drivers perform

    上傳時間: 2014-01-01

    上傳用戶:saharawalker

  • *** 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.

    標簽: HyperString reserved Systems rights

    上傳時間: 2017-07-04

    上傳用戶:mhp0114

主站蜘蛛池模板: 靖边县| 常宁市| 攀枝花市| 十堰市| 马龙县| 逊克县| 平原县| 琼中| 垣曲县| 吴旗县| 蕉岭县| 吉林省| 南汇区| 黄平县| 图片| 垦利县| 阿拉善左旗| 贺兰县| 鲁山县| 永定县| 威海市| 察隅县| 武定县| 奎屯市| 石河子市| 屯留县| 抚顺市| 广宗县| 庆城县| 论坛| 延庆县| 长武县| 方正县| 兴安县| 葫芦岛市| 鲁山县| 锡林郭勒盟| 嫩江县| 郴州市| 米脂县| 乐亭县|