亚洲欧美第一页_禁久久精品乱码_粉嫩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)過「同行評(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

  • FPGA讀寫SD卡讀取BMP圖片通過LCD顯示例程實(shí)驗(yàn) Verilog邏輯源碼Quartus工程文件

    FPGA讀寫SD卡讀取BMP圖片通過LCD顯示例程實(shí)驗(yàn) Verilog邏輯源碼Quartus工程文件+文檔說(shuō)明,FPGA型號(hào)Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。1 實(shí)驗(yàn)簡(jiǎn)介在前面的實(shí)驗(yàn)中我們練習(xí)了 SD 卡讀寫,VGA 視頻顯示等例程,本實(shí)驗(yàn)將 SD 卡里的 BMP 圖片讀出,寫入到外部存儲(chǔ)器,再通過 VGA、LCD 等顯示。本實(shí)驗(yàn)如果通過液晶屏顯示,需要有液晶屏模塊。2 實(shí)驗(yàn)原理在前面的實(shí)驗(yàn)中我們?cè)?VGA、LCD 上顯示的是彩條,是 FPGA 內(nèi)部產(chǎn)生的數(shù)據(jù),本實(shí)驗(yàn)將彩條替換為 SD 內(nèi)的 BMP 圖片數(shù)據(jù),但是 SD 卡讀取速度遠(yuǎn)遠(yuǎn)不能滿足顯示速度的要求,只能先寫入外部高速 RAM,再讀出后給視頻時(shí)序模塊顯示module top( input                       clk, input                       rst_n, input                       key1, output [5:0]                seg_sel, output [7:0]                seg_data, output                      vga_out_hs,        //vga horizontal synchronization output                      vga_out_vs,        //vga vertical synchronization output[4:0]                 vga_out_r,         //vga red output[5:0]                 vga_out_g,         //vga green output[4:0]                 vga_out_b,         //vga blue output                      sd_ncs,            //SD card chip select (SPI mode) output                      sd_dclk,           //SD card clock output                      sd_mosi,           //SD card controller data output input                       sd_miso,           //SD card controller data input output                      sdram_clk,         //sdram clock output                      sdram_cke,         //sdram clock enable output                      sdram_cs_n,        //sdram chip select output                      sdram_we_n,        //sdram write enable output                      sdram_cas_n,       //sdram column address strobe output                      sdram_ras_n,       //sdram row address strobe output[1:0]                 sdram_dqm,         //sdram data enable output[1:0]                 sdram_ba,          //sdram bank address output[12:0]                sdram_addr,        //sdram address inout[15:0]                 sdram_dq           //sdram data);parameter MEM_DATA_BITS         = 16  ;            //external memory user interface data widthparameter ADDR_BITS             = 24  

    標(biāo)簽: fpga

    上傳時(shí)間: 2021-10-27

    上傳用戶:

  • 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

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费人成网站在线观看欧美高清| 国产综合婷婷| 亚洲新中文字幕| 欧美 亚欧 日韩视频在线| 尤物九九久久国产精品的分类| 久久精品毛片| 亚洲看片免费| 韩日在线一区| 欧美精品v国产精品v日韩精品| 国产亚洲精品久久久| 久久嫩草精品久久久久| 亚洲韩国青草视频| 欧美天堂亚洲电影院在线播放| 日韩图片一区| 国产亚洲精品v| 欧美不卡在线| 亚洲手机视频| 亚洲激情偷拍| 国产欧美一区二区三区沐欲| 欧美国产成人在线| 国产精品爱啪在线线免费观看| 亚洲日本中文字幕区| 欧美激情亚洲综合一区| 欧美一区二区视频观看视频| 亚洲精品一区二区三| 亚洲国产精品一区二区www在线| 国产精品一区二区三区四区| 欧美成人69| 美女尤物久久精品| 久久久xxx| 久久成人免费| 一本色道久久加勒比88综合| 在线日韩av永久免费观看| 国产精品s色| 国产精品久久国产愉拍 | 欧美风情在线观看| 久久亚洲免费| 久久久久国产精品一区二区| 久久免费国产精品| 日韩一区二区免费看| 1000部国产精品成人观看| 亚洲二区在线视频| 国产精品素人视频| 国产夜色精品一区二区av| 国产精品日韩| 欧美日韩一级片在线观看| 国产精品久久久久久久久借妻 | 日韩一区二区福利| 亚洲视频专区在线| 久久久www成人免费毛片麻豆| 久久成人18免费观看| 欧美激情网友自拍| 国产视频丨精品|在线观看| 伊人成人在线视频| 亚洲丝袜av一区| 欧美二区视频| 在线观看欧美精品| 欧美在线视频二区| 国产精品久久久久毛片大屁完整版 | 久久综合亚州| 国产精品久久久久久久久久直播| 国产视频亚洲| 久久九九国产| 黄色另类av| 美女性感视频久久久| 精品动漫一区二区| 久久亚洲免费| 91久久久亚洲精品| 欧美精品三级日韩久久| 最新日韩中文字幕| 欧美日韩xxxxx| 一区二区三区产品免费精品久久75| 欧美精品观看| 一区二区免费在线播放| 欧美伦理视频网站| 亚洲欧美清纯在线制服| 国产日本欧美一区二区三区| 久久高清免费观看| 久久国产夜色精品鲁鲁99| 国产日韩欧美自拍| 久久久久久有精品国产| 亚洲丰满在线| 欧美国产一区二区三区激情无套| 亚洲国产mv| 国产乱码精品| 免费不卡亚洲欧美| 亚洲午夜久久久久久久久电影院| 国产精品区免费视频| 久久国产精品99国产| 久久精品国产成人| 国产亚洲欧洲997久久综合| 性伦欧美刺激片在线观看| 亚洲欧美日韩精品| 国产精品久久综合| 欧美激情综合在线| 久久久99久久精品女同性| 日韩一区二区福利| 狠色狠色综合久久| 国产精品欧美久久| 欧美激情一区二区三区不卡| 亚洲摸下面视频| 亚洲乱码国产乱码精品精可以看| 国产精品日韩在线一区| 欧美日韩一区二| 欧美日产一区二区三区在线观看| 久久精品国产一区二区三| 亚洲在线中文字幕| 亚洲一区二区在线| 正在播放亚洲一区| 亚洲少妇自拍| 性欧美办公室18xxxxhd| 亚洲欧美成人网| 久久精品久久99精品久久| 欧美一二三视频| 欧美一区视频| 久久久综合精品| 欧美成人精品福利| 欧美日韩一区二区三区在线视频| 欧美片第1页综合| 国产精品一区二区男女羞羞无遮挡 | 欧美无乱码久久久免费午夜一区| 免费在线亚洲| 国产精品www.| 伊人久久婷婷色综合98网| 亚洲国产人成综合网站| 亚洲网在线观看| 巨乳诱惑日韩免费av| 欧美午夜www高清视频| 黄色亚洲在线| 亚洲尤物精选| 欧美国产日韩a欧美在线观看| 国产精品福利在线| 亚洲国产精品精华液2区45| 亚洲一级免费视频| 欧美成人精品影院| 国内精品免费午夜毛片| 亚洲一区二区三区免费在线观看 | 亚洲欧洲视频| 久久久99免费视频| 国产精品黄色| 亚洲一区二区在线视频| 欧美激情一区二区在线| 亚洲第一中文字幕| 久久本道综合色狠狠五月| 欧美风情在线| 亚洲日本成人在线观看| 久久亚洲欧美国产精品乐播| 国产主播精品| 久久阴道视频| 影音先锋成人资源站| 久久亚洲一区二区| 亚洲人成人99网站| 国产日韩欧美综合一区| 1769国内精品视频在线播放| 久久久久www| 亚洲电影下载| 欧美三级日本三级少妇99| 夜夜精品视频一区二区| 国产精品久久久久久久久久直播| 亚洲欧美日韩国产综合在线| 国产真实乱子伦精品视频| 欧美成人激情视频| 一区二区三区日韩欧美精品| 国产精品高潮在线| 欧美ed2k| 影音先锋在线一区| 欧美在线视频全部完| 国产午夜精品理论片a级探花| 欧美有码视频| 99国产精品久久久久久久成人热| 欧美日韩国产一区二区三区地区 | 午夜精品一区二区三区电影天堂| 国产欧美在线观看| 欧美日韩国产999| 麻豆成人91精品二区三区| 亚洲在线第一页| 亚洲最新合集| 亚洲精品美女久久久久| 伊人成人在线视频| 国产噜噜噜噜噜久久久久久久久| 老司机一区二区三区| 久久成人人人人精品欧| 亚洲欧美日韩另类| 亚洲在线中文字幕| 亚洲一二三四区| 香蕉久久一区二区不卡无毒影院 | 男女av一区三区二区色多| 午夜精品婷婷| 久久久久免费观看| 久久久久久黄| 欧美精品二区| 欧美视频福利| 国产精品日韩在线一区| 国产老肥熟一区二区三区| 国产噜噜噜噜噜久久久久久久久| 国产精品一区二区三区观看| 国产精品一区在线观看| 精品不卡视频| 一区二区日韩| 久久另类ts人妖一区二区|