C# ArrayList C++模仿版,只支持最簡單的動態(tài)隊列操作,采用雙層鏈表,支持16兆以上個對象的隊列管理。 效率:查找上界O(988+N/976144),插入及刪除上界O(988+N/976144+N*T(create/delete
上傳時間: 2013-12-11
上傳用戶:tianjinfan
最小二乘擬合算法C程序,N為擬合點數,T為擬合階數。
上傳時間: 2016-12-30
上傳用戶:頂得柱
I2C程序函數是采用軟件延時的方法產生SCL脈沖,對高晶振頻率要作一定的修改 C%NG\#A1e0(本例是3us機器周期,如果系統對時間要求不是很重要的話,最好在每個單元讀寫結束時加個延時, $`Z(Un+b0Tm0測試有子地址器件函數,未測試無地址的器件,適合器件地址和子地址小于256的器件, 大于256的單元的器件可以自己改寫)。 td`U4A!~,L C0
上傳時間: 2017-01-01
上傳用戶:wmwai1314
*** **增量式PID控制算法程序*********** T、TD、TI、KP依次從30H,33H,36H,39H開始。 A,B,C的值依次存在BLOCK1,BLOCK2,BLOCK3的地址里 這里R(k)給的是定值
上傳時間: 2017-01-16
上傳用戶:cursor
c語言編程寶典,C 語言是1972年由美國的Dennis Ritchie設計發(fā)明的, 并首次在UNIX操作系統 的 DEC PDP-11 計算機上使用。 它由早期的編程語言 BCPL( Basic Combind Programming Language) 發(fā)展演變而來。在1970年, AT&T 貝爾實驗室的 Ken Thompson根據BCPL語言設計出較先進的并取名為 B的語言, 最后導了C 語言的問世。 隨著微型計算機的日益普及, 出現了許多C 語言版本。由于沒有統一的標準, 使得這些C 語言之間出現了一些不一致的地方。為了改變這種情況, 美國國家標準 研究所(ANSI)為C 語言制定了一套ANSI標準, 成為現行的C語言標準。
上傳時間: 2017-02-27
上傳用戶:dongbaobao
Visual C++ has been one of most effective tool for the large industrial applications. This book is the best resource I have ever found on Industrial Applications of Visual C++.
標簽: applications industrial effective Visual
上傳時間: 2014-11-27
上傳用戶:lmeeworm
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
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 "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. 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