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

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

自行車測(cè)速系統(tǒng)

  • C#簡單練習進銷存代碼

    C#簡單練習進銷存代碼,實現簡單的添加查詢功能,請自行完善,請各位提出寶貴意見。

    標簽: 進銷 代碼

    上傳時間: 2013-12-10

    上傳用戶:dancnc

  • 使用C#語言實現軟件自動升級的實例源碼

    使用C#語言實現軟件自動升級的實例源碼,方便自己開發的軟件自行升級維護

    標簽: 語言 自動升級 源碼 軟件

    上傳時間: 2013-12-18

    上傳用戶:ryb

  • 這是一個控制無刷直流電機調速的程序

    這是一個控制無刷直流電機調速的程序,采用c語言編程,適用于tms320f2812

    標簽: 控制 無刷直流 電機調速 程序

    上傳時間: 2017-05-09

    上傳用戶:hn891122

  • ds18b20的C語言使用范例

    ds18b20的C語言使用范例,有讀寫,顯示等模塊,可能與你的電路板不相符,請自行修改

    標簽: 18b b20 ds 18

    上傳時間: 2017-05-11

    上傳用戶:黑漆漆

  • nRF24E1編程下載板是我們自行開發的簡易無線通信模塊nRF24E1的在線下載板

    nRF24E1編程下載板是我們自行開發的簡易無線通信模塊nRF24E1的在線下載板,使用方便。 nRF24E1編程下載板源程序包括上位機程序、單片機固件程序和nRF24E1內51核控制程序, 分別存放在“上位機程序”、“AT89S52”和“nRF24E1”三個文件夾內。 “上位機程序”內有應用軟件download.exe。 “AT89S52”內有單片機固件源程序download.c,可以直接編譯連接生成下載文件,下載到目標單片機AT89S52中。 “nRF24E1”內有控制nRF24E1工作的源程序,分別是: 24E1.c:典型控制應用; putchar.c:nRF24E1串行通信源程序; transmit.c:nRF24E1無線發送源程序; receive.c:nRF24E1無線接收源程序; “Temperature”:nRF24E1控制DS18B20溫度采集并無線發送源程序。

    標簽: nRF 24E 24 E1

    上傳時間: 2014-01-08

    上傳用戶:ommshaggar

  • 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

  • C in A Nutshell Learning a language--any language--involves a process wherein you learn to rely les

    C in A Nutshell Learning a language--any language--involves a process wherein you learn to rely less and less on instruction and more increasingly on the aspects of the language you ve mastered. Whether you re learning French, Java, or C, at some point you ll set aside the tutorial and attempt to converse on your own. It s not necessary to know every subtle facet of French in order to speak it well, especially if there s a good dictionary available. Likewise, C programmers don t need to memorize every detail of C in order to write good programs. What they need instead is a reliable, comprehensive reference that they can keep nearby. C in a Nutshell is that reference.

    標簽: language Nutshell Learning involves

    上傳時間: 2013-12-25

    上傳用戶:王者A

  • 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

主站蜘蛛池模板: 历史| 大石桥市| 荆门市| 蒙山县| 辽宁省| 桦南县| 五常市| 株洲县| 鹰潭市| 裕民县| 镇宁| 娱乐| 洛隆县| 虎林市| 平安县| 五华县| 读书| 石渠县| 永丰县| 临西县| 屯昌县| 晋城| 高邑县| 元阳县| 丘北县| 定边县| 望都县| 舒城县| 渝北区| 平乡县| 略阳县| 澄江县| 山东| 同仁县| 枞阳县| 昂仁县| 北川| 杭州市| 吉木乃县| 大悟县| 贵州省|