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

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

INPUT-output

  • The toolbox solves a variety of approximate modeling problems for linear static models. The model ca

    The toolbox solves a variety of approximate modeling problems for linear static models. The model can be parameterized in kernel, image, or input/output form and the approximation criterion, called misfit, is a weighted norm between the given data and data that is consistent with the model. There are three main classes of functions in the toolbox: transformation functions, misfit computation functions, and approximation functions. The approximation functions derive an approximate model from data, the misfit computation functions are used for validation and comparison of models, and the transformation functions are used for deriving one model representation from another. KEYWORDS: Total least squares, generalized total least squares, software implementation.

    標(biāo)簽: approximate The modeling problems

    上傳時(shí)間: 2013-12-20

    上傳用戶:15071087253

  • % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is p

    % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is possible to use regularization by % weight decay. Also pruned (ie. not fully connected) networks can % be trained. % % Given a set of corresponding INPUT-output pairs and an initial % network, % [W1,W2,critvec,iteration,lambda]=marq(NetDef,W1,W2,PHI,Y,trparms) % trains the network with the Levenberg-Marquardt method. % % The activation functions can be either linear or tanh. The % network architecture is defined by the matrix NetDef which % has two rows. The first row specifies the hidden layer and the % second row specifies the output layer.

    標(biāo)簽: Levenberg-Marquardt desired network neural

    上傳時(shí)間: 2016-12-27

    上傳用戶:jcljkh

  • Java Media APIs: Cross-Platform Imaging, Media, and Visualization presents integrated Java media sol

    Java Media APIs: Cross-Platform Imaging, Media, and Visualization presents integrated Java media solutions that demonstrate the best practices for using this diverse collection. According to Sun MicroSystems, "This set of APIs supports the integration of audio and video clips, animated presentations, 2D fonts, graphics, and images, as well as speech input/output and 3D models." By presenting each API in the context of its appropriate use within an integrated media application, the authors both illustrate the potential of the APIs and offer the architectural guidance necessary to build compelling programs.

    標(biāo)簽: Media Java Cross-Platform Visualization

    上傳時(shí)間: 2013-12-04

    上傳用戶:hanli8870

  • This book gives a concise description of the Java 2 programming language. They give a quick referen

    This book gives a concise description of the Java 2 programming language. They give a quick reference for the reader who has already learned (or is learning) Java from a standard textbook and who wants to know the language in more detail. These book presents the entire Java programming language and essential parts of the class libraries: the collection classes and the INPUT-output classes.

    標(biāo)簽: description programming language concise

    上傳時(shí)間: 2017-06-20

    上傳用戶:asdkin

  • Boost C++ Libraries 1.35.0

    Boost C++ Libraries Free peer-reviewed portable C++ source libraries Boost C++ Libraries 基本上是一個(gè)免費(fèi)的 C++ 的跨平臺(tái)函式庫(kù)集合,基本上應(yīng)該可以把它視為 C++ STL 的功能再延伸;他最大的特色在於他是一個(gè)經(jīng)過(guò)「同行評(píng)審」(peer review,可參考維基百科)、開放原始碼的函式庫(kù),而且有許多 Boost 的函式庫(kù)是由 C++ 標(biāo)準(zhǔn)委員會(huì)的人開發(fā)的,同時(shí)部分函式庫(kù)的功能也已經(jīng)成為 C++ TR1 (Technical Report 1,參考維基百科)、TR2、或是 C++ 0x 的標(biāo)準(zhǔn)了。 它的官方網(wǎng)站是:http://www.boost.org/,包含了 104 個(gè)不同的 library;由於他提供的函式庫(kù)非常地多,的內(nèi)容也非常地多元,根據(jù)官方的分類,大致上可以分為下面這二十類: 字串和文字處理(String and text processing) 容器(Containers) Iterators 演算法(Algorithms) Function objects and higher-order programming 泛型(Generic Programming) Template Metaprogramming Preprocessor Metaprogramming Concurrent Programming 數(shù)學(xué)與數(shù)字(Math and numerics) 正確性與測(cè)試(Correctness and testing) 資料結(jié)構(gòu)(Data structures) 影像處理(Image processing) 輸入、輸出(Input/Output) Inter-language support 記憶體(Memory) 語(yǔ)法分析(Parsing) 程式介面(Programming Interfaces) 其他雜項(xiàng) Broken compiler workarounds 其中每一個(gè)分類,又都包含了一個(gè)或多個(gè)函式庫(kù),可以說(shuō)是功能相當(dāng)豐富。

    標(biāo)簽: Boost C++ Libraries

    上傳時(shí)間: 2015-05-15

    上傳用戶:fangfeng

  • BP神經(jīng)網(wǎng)絡(luò)matlab源程序代碼

    BP神經(jīng)網(wǎng)絡(luò)matlab源程序代碼 %%  該代碼為 BP 神經(jīng)網(wǎng)絡(luò)的預(yù)測(cè)代碼 %  清空環(huán)境變量   clc  clear  %   %%  網(wǎng)絡(luò)結(jié)構(gòu)建立   % 讀取數(shù)據(jù)   load data input output  input=data(;,1;2;3;4;5); output=data(;,5); %節(jié)點(diǎn)個(gè)數(shù)     %訓(xùn)練數(shù)據(jù)和預(yù)測(cè)數(shù)據(jù)   %選連樣本輸入輸出數(shù)據(jù)歸一化    %構(gòu)建網(wǎng)絡(luò)  net=newff(inputn,outputn,hiddennum);      %網(wǎng)絡(luò)進(jìn)化參數(shù)  %網(wǎng)絡(luò)訓(xùn)練    % 預(yù)測(cè)數(shù)據(jù)歸一化 

    標(biāo)簽: matlab BP神經(jīng)網(wǎng)絡(luò) 源程序 代碼

    上傳時(shí)間: 2018-04-10

    上傳用戶:45808330

  • Basic+ESD+and+IO+Design

    This effort started as an answer to the numerous questions the authors have repeatedly had to answer about electrostatic discharge (ESD) protection and input/output (1/0) designs. In the past no comprehensive book existed suffi- ciently covering these areas, and these topics were rarely taught in engineering schools. Thus first-time I/O and ESD protection designers have had consider- able trouble getting started. This book is in part an answer to such needs.

    標(biāo)簽: Design Basic ESD and IO

    上傳時(shí)間: 2020-06-05

    上傳用戶:shancjb

  • AD8605/AD8606/AD8608 運(yùn)算放大器DataSheet

    Precision, Low Noise, CMOS, Rail-to-Rail, Input/Output Operational Amplifiers Data Sheet AD8605/AD8606/AD8608The AD8605, AD8606, and AD86081 are single, dual, and quad rail-to-rail input and output, single-supply amplifiers. They feature very low offset voltage, low input voltage and current noise, and wide signal bandwidth. They use the Analog Devices, Inc. patented DigiTrim? trimming technique, which achieves

    標(biāo)簽: 運(yùn)算放大器

    上傳時(shí)間: 2022-02-02

    上傳用戶:

  • 高清電子書-C++ Primer Plus 第6版英文版 1438頁(yè)

    高清電子書-C++ Primer Plus, 第6版英文版 1438頁(yè)Learning C++ is an adventure of discovery, particularly because the language accommodates several programming paradigms, including object-oriented programming, generic programming, and the traditional procedural programming.The fifth edition of this book described the language as set forth in the ISO C++ standards, informally known as C++99 and C++03, or, sometimes as C++99/03. (The 2003 version was largely a technical correction to the 1999 standard and didn’t add any new features.) Since then, C++ continues to evolve.As this book is written, the international C++ Standards Committee has just approved a new version of the standard.This standard had the informal name of C++0x while in development, and now it will be known as C++11. Most contemporary compilers support C++99/03 quite well, and most of the examples in this book comply with that standard. But many features of the new standard already have appeared in some implementations, and this edition of C++ Primer Plus explores these new features. C++ Primer Plus discusses the basic C language and presents C++ features, making this book self-contained. It presents C++ fundamentals and illustrates them with short, to-the-point programs that are easy to copy and experiment with.You learn about input/output (I/O), how to make programs perform repetitive tasks and make choices, the many ways to handle data, and how to use functions.You learn about the many features C++ has added to C, including the followi

    標(biāo)簽: C++

    上傳時(shí)間: 2022-02-19

    上傳用戶:trh505

  • 天龍功放AVR1506的用戶手冊(cè)(英文版)

    如果在調(diào)諧器或電視機(jī)附近使用本機(jī)或任何其他使用微處理器的電子設(shè)備,則可能會(huì)產(chǎn)生圖像的噪聲或干擾。如果發(fā)生這種情況,請(qǐng)采取以下步驟將本機(jī)安裝在盡可能遠(yuǎn)離調(diào)諧器或T的地方。遠(yuǎn)離調(diào)諧器或T,遠(yuǎn)離本機(jī)的電源線和輸入/輸出連接電纜。尤其在使用室內(nèi)天線或300歐姆饋線。我們建議使用室外天線和75 Q / ohm同軸電纜Noise or disturbance of the picture may be generated if this unit or any other electronic equipment using microprocessors is used near a tuner or TV If this happens, take the following stepsInstall this unit as far away as possible from the tuner or T Run the antenna wires from the tuner or T away from this unit ' s power supply cord and input/output connection cables. Noise or disturbance tends to occur particularly when using indoor antennas or300 ohm feeder wires. We recommend using outdoor antennas and 75 Q/ohm coaxial cables

    標(biāo)簽: 功放

    上傳時(shí)間: 2022-04-22

    上傳用戶:

主站蜘蛛池模板: 呼伦贝尔市| 沾益县| 手机| 栖霞市| 陵水| 舟山市| 辽阳市| 怀来县| 寿阳县| 隆德县| 阿克陶县| 兴业县| 河北区| 政和县| 金坛市| 保康县| 汨罗市| 新宁县| 江川县| 嘉义市| 聊城市| 奉贤区| 定兴县| 澜沧| 康马县| 天津市| 鹤庆县| 陆丰市| 赤壁市| 锡林郭勒盟| 临西县| 洞头县| 达拉特旗| 阿克陶县| 芮城县| 安陆市| 静安区| 溧阳市| 龙井市| 苗栗县| 遵义县|