虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

C-T

  • c语言编程宝典,C 语言是1972年由美国的Dennis Ritchie设计发明的, 并首次在UNIX操作系统 的 DEC PDP-11 计算机上使用。 它由早期的编程语言 BCPL( Ba

    c语言编程宝典,C 语言是1972年由美国的Dennis Ritchie设计发明的, 并首次在UNIX操作系统 的 DEC PDP-11 计算机上使用。 它由早期的编程语言 BCPL( Basic Combind Programming Language) 发展演变而来。在1970年, AT&T 贝尔实验室的 Ken Thompson根据BCPL语言设计出较先进的并取名为 B的语言, 最后导了C 语言的问世。 随着微型计算机的日益普及, 出现了许多C 语言版本。由于没有统一的标准, 使得这些C 语言之间出现了一些不一致的地方。为了改变这种情况, 美国国家标准 研究所(ANSI)为C 语言制定了一套ANSI标准, 成为现行的C语言标准。

    标签: Ritchie Dennis 1972 BCPL

    上传时间: 2017-02-27

    上传用户:dongbaobao

  • Visual C++ has been one of most effective tool for the large industrial applications. This book is t

    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

    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

  • 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

  • Specification (GB)_TTI Messages via Traffic Message Coding-Coding Protocol for RDS-TMC Using ALERT-C

    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