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
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
BH1415F調頻臺控制C程序),使用AT89C52單片機,12MHZ晶振,用共陽四位LED數碼管
上傳時間: 2013-12-21
上傳用戶:dancnc
C語言程序設計-主講教師:陳美蓮 1.C語言概述 2.數據類型、運算符與表達式 3.順序設計 4.選擇結構設計 5.循環結構設計 6.數組的定義和引用 7.函數的定義和調用 .預處理命令 9.指針的使用 10.結構體與共同體 11.位運算 12.文件的操作
上傳時間: 2014-01-11
上傳用戶:410805624
*** 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
Specification (GB)_TTI Messages via Traffic Message Coding-Coding Protocol for RDS-TMC Using ALERT-C (GB-T 20612.1-2006, 200611)
標簽: Specification Coding-Coding Messages Protocol
上傳時間: 2013-12-10
上傳用戶:qq21508895
P3.20. Consider an analog signal xa (t) = sin (2πt), 0 ≤t≤ 1. It is sampled at Ts = 0.01, 0.05, and 0.1 sec intervals to obtain x(n). b) Reconstruct the analog signal ya (t) from the samples x(n) using the sinc interpolation (use ∆ t = 0.001) and determine the frequency in ya (t) from your plot. (Ignore the end effects.) C) Reconstruct the analog signal ya (t) from the samples x (n) using the cubic spline interpolation and determine the frequency in ya (t) from your plot. (Ignore the end effects.)
標簽: Consider sampled analog signal
上傳時間: 2017-07-12
上傳用戶:咔樂塢
如何顯示透明的位圖,Visual C++實現的
上傳時間: 2017-07-13
上傳用戶:894898248