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

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

SELECT

  • Auto-Machine-Learning-Methods-Systems-Challenges

    The past decade has seen an explosion of machine learning research and appli- cations; especially, deep learning methods have enabled key advances in many applicationdomains,suchas computervision,speechprocessing,andgameplaying. However, the performance of many machine learning methods is very sensitive to a plethora of design decisions, which constitutes a considerable barrier for new users. This is particularly true in the booming field of deep learning, where human engineers need to SELECT the right neural architectures, training procedures, regularization methods, and hyperparameters of all of these components in order to make their networks do what they are supposed to do with sufficient performance. This process has to be repeated for every application. Even experts are often left with tedious episodes of trial and error until they identify a good set of choices for a particular dataset.

    標(biāo)簽: Auto-Machine-Learning-Methods-Sys tems-Challenges

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

    上傳用戶:shancjb

  • RBF神經(jīng)網(wǎng)絡(luò)

    %this is an example demonstrating the Radial Basis Function %if you SELECT a RBF that supports it (Gausian, or 1st or 3rd order %polyharmonic spline), this also calculates a line integral between two %points.

    標(biāo)簽: RBF 神經(jīng)網(wǎng)絡(luò)

    上傳時(shí)間: 2021-07-02

    上傳用戶:19800358905

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

    FPGA讀寫(xiě)SD卡讀取BMP圖片通過(guò)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 卡讀寫(xiě),VGA 視頻顯示等例程,本實(shí)驗(yàn)將 SD 卡里的 BMP 圖片讀出,寫(xiě)入到外部存儲(chǔ)器,再通過(guò) VGA、LCD 等顯示。本實(shí)驗(yàn)如果通過(guò)液晶屏顯示,需要有液晶屏模塊。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)不能滿足顯示速度的要求,只能先寫(xiě)入外部高速 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

    上傳用戶:

  • FPGA讀取OV5640攝像頭數(shù)據(jù)并通過(guò)VGA或LCD屏顯示輸出的Verilog邏輯源碼Quartu

    FPGA讀取OV5640攝像頭數(shù)據(jù)并通過(guò)VGA或LCD屏顯示輸出的Verilog邏輯源碼Quartus工程文件+文檔說(shuō)明,F(xiàn)PGA型號(hào)Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input                       clk, input                       rst_n, output                      cmos_scl,          //cmos i2c clock inout                       cmos_sda,          //cmos i2c data input                       cmos_vsync,        //cmos vsync input                       cmos_href,         //cmos hsync refrence,data valid input                       cmos_pclk,         //cmos pxiel clock output                      cmos_xclk,         //cmos externl clock input   [7:0]               cmos_db,           //cmos data output                      cmos_rst_n,        //cmos reset output                      cmos_pwdn,         //cmos power down 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                      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);

    標(biāo)簽: fpga ov5640 攝像頭

    上傳時(shí)間: 2021-12-18

    上傳用戶:

  • 基于FPGA設(shè)計(jì)的sdram讀寫(xiě)測(cè)試實(shí)驗(yàn)Verilog邏輯源碼Quartus工程文件+文檔說(shuō)明 DR

    基于FPGA設(shè)計(jì)的sdram讀寫(xiě)測(cè)試實(shí)驗(yàn)Verilog邏輯源碼Quartus工程文件+文檔說(shuō)明,DRAM選用海力士公司的 HY57V2562 型號(hào),容量為的 256Mbit,采用了 54 引腳的TSOP 封裝, 數(shù)據(jù)寬度都為 16 位, 工作電壓為 3.3V,并丏采用同步接口方式所有的信號(hào)都是時(shí)鐘信號(hào)。FPGA型號(hào)Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。timescale 1ps/1psmodule top(input                        clk,input                        rst_n,output[1:0]                  led,output                       sdram_clk,     //sdram clockoutput                       sdram_cke,     //sdram clock enableoutput                       sdram_cs_n,    //sdram chip SELECToutput                       sdram_we_n,    //sdram write enableoutput                       sdram_cas_n,   //sdram column address strobeoutput                       sdram_ras_n,   //sdram row address strobeoutput[1:0]                  sdram_dqm,     //sdram data enable output[1:0]                  sdram_ba,      //sdram bank addressoutput[12:0]                 sdram_addr,    //sdram addressinout[15:0]                  sdram_dq       //sdram data);parameter MEM_DATA_BITS          = 16  ;        //external memory user interface data widthparameter ADDR_BITS              = 24  ;        //external memory user interface address widthparameter BUSRT_BITS             = 10  ;        //external memory user interface burst widthparameter BURST_SIZE             = 128 ;        //burst sizewire                             wr_burst_data_req;       // from external memory controller,write data request ,before data 1 clockwire                             wr_burst_finish;         // from external memory controller,burst write finish

    標(biāo)簽: fpga sdram verilog quartus

    上傳時(shí)間: 2021-12-18

    上傳用戶:

  • PW4203_2.0.pdf規(guī)格書(shū)下載

    PW4203 is a 4.5-22V input, 2A multi-cell synchronous Buck Li-Ion battery charger, suitable forportable application. SELECT pin is convenient for multi-cell charging. 800 kHz synchronous buckregulator integrates of 22V rating FETs with ultra low on- resistance to achieve high efficiency andsimple circuit design.The PW4203 is available in an 8-pin SOP package, provides a very compact system solution andgood thermal conductance

    標(biāo)簽: pw4203

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

    上傳用戶:

  • 基于MSP430單片機(jī)及FPGA的簡(jiǎn)易數(shù)字示波器

    數(shù)字示波器功能強(qiáng)大,使用方便,但是價(jià)格相對(duì)昂貴。本文以Ti的MSP430F5529為主控器,以Altera公司的EP2C5T144C8 FPGA器件為邏輯控制部件設(shè)計(jì)數(shù)字示波器。模擬信號(hào)經(jīng)程控放大、整形電路后形成方波信號(hào)送至FPGA測(cè)頻,根據(jù)頻率值選擇采用片上及片外高速AD分段采樣。FPGA控制片外AD采樣并將數(shù)據(jù)輸入到FIFO模塊中緩存,由單片機(jī)進(jìn)行頻譜分析。測(cè)試表明:簡(jiǎn)易示波器可以實(shí)現(xiàn)自動(dòng)選檔、多采樣率采樣、高精度測(cè)頻及頻譜分析等功能。Digital oscilloscope is powerful and easy to use, but also expensive. The research group designed a low-cost digital oscilloscope, the chip of MSP430F5529 of TI is chosen as the main controller and the device of EP2C5T144C8 of Altera company is used as the logic control unit. Analog signal enter the programmable amplifier circuit, shaping circuit and other pre-processing circuit. The shaped rectangular wave signal is sent to FPGA for measure the frequency. According to the frequency value to SELECT AD on-chip or off-chip high-speed AD for sampling. FPGA controls the off-chip AD sampling and buffers AD data by FIFO module. The single chip microcomputer receives the data, and do FFT for spectrum analysis. The test shows that the simple oscilloscope can realize automatic gain SELECTion, sampling at different sampling rates, high precision frequency measurement and spectrum analysis.

    標(biāo)簽: msp430 單片機(jī) fpga 數(shù)字示波器

    上傳時(shí)間: 2022-03-27

    上傳用戶:

  • Spartan6系列之器件引腳功能詳述

    1.Spartan-6 系列封裝概述Spartan-6 系列具有低成本、省空間的封裝形式,能使用戶引腳密度最大化。所有Spartan-6 LX 器件之間的引腳分配是兼容的,所有Spartan-6 LXT器件之間的引腳分配是兼容的,但是Spartan-6 LX和Spartan-6 LXT器件之間的引腳分配是不兼容的。表格1 Spartan-6 系列FPGA封裝2.Spartan-6 系列引腳分配及功能詳述Spartan-6 系列有自己的專用引腳,這些引腳是不能作為SELECT IO 使用的,這些專用引腳包括:專用配置引腳,表格2 所示GTP高速串行收發(fā)器引腳,表格3 所示表格2 Spartan-6 FPGA專用配置引腳注意:只有LX75, LX75T, LX100, LX100T, LX150, and LX150T器件才有VFS、VBATT、RFUSE引腳。表格3 Spartan-6 器件GTP通道數(shù)目注意:LX75T 在FG(G)484 和CS(G)484 中封裝4 個(gè)GTP通道,而在FG(G)676中封裝了8 個(gè)GTP通道;LX100T在FG(G)484 和CS(G)484 中封裝4個(gè)GTP通道,而在FG(G)676 和FG(G)900中封裝了8 個(gè)GTP通道。如表4,每一種型號(hào)、每一種封裝的器件的可用IO 引腳數(shù)目不盡相同,例如對(duì)于LX4TQG144器件,它總共有引腳144 個(gè),其中可作為單端IO 引腳使用的IO 個(gè)數(shù)為102 個(gè),這102 個(gè)單端引腳可作為51 對(duì)差分IO 使用,另外的32 個(gè)引腳為電源或特殊功能如配置引腳。表格4 Spartan6 系列各型號(hào)封裝可用的IO 資源匯總表格5 引腳功能詳述

    標(biāo)簽: spartan-6

    上傳時(shí)間: 2022-06-18

    上傳用戶:

  • 基于Linux的Socket網(wǎng)絡(luò)編程的性能優(yōu)化.

    摘要:介紹在Linux操作系統(tǒng)環(huán)境下Socket網(wǎng)絡(luò)編程的原理、流程和最終實(shí)現(xiàn)。編程采用客戶端/服務(wù)器模式。提出解決多個(gè)客戶端連接服務(wù)器時(shí)無(wú)法處理I/0多路復(fù)用問(wèn)題的方法。提出通過(guò)最小化報(bào)文傳輸來(lái)減少傳輸時(shí)廷,為Bandwidth Delay Product調(diào)節(jié)TCP窗口,實(shí)現(xiàn)充分利用帶寬提高Linux的Socket性能。在實(shí)際網(wǎng)絡(luò)傳輸環(huán)境復(fù)雜多變的情況下,達(dá)到優(yōu)化網(wǎng)絡(luò)傳輸性能的目的。關(guān)鍵詞:linux;性能優(yōu)化;Socket;SELECT()1引言隨著Internet的日益發(fā)展和普及,網(wǎng)絡(luò)在嵌入式系統(tǒng)中應(yīng)用非常廣泛,越來(lái)越多的嵌入式設(shè)備采用Linux操作系統(tǒng)。Linux是一個(gè)源代碼公開(kāi)的免費(fèi)操作系統(tǒng),具有強(qiáng)移植性",所以對(duì)基于Linux的Socket網(wǎng)絡(luò)編程的研究越來(lái)越重要。2Socket簡(jiǎn)介在Linux中的網(wǎng)絡(luò)編程通過(guò)Socket接口進(jìn)行,是一種特殊的I/O,也是一種特殊的文件描述符。Socket是使用標(biāo)準(zhǔn)Linux文件符(file descriptor)和其他程序通信的方式。這里Socket 編程采用客戶/服務(wù)器模式如圖1所示。

    標(biāo)簽: linux socket 網(wǎng)絡(luò)編程

    上傳時(shí)間: 2022-06-23

    上傳用戶:

  • KEIL環(huán)境下設(shè)置程序在RAM中調(diào)試運(yùn)行詳解

    關(guān)于ARM怎么樣在RAM中運(yùn)行在KEIL環(huán)境下怎么樣讓程序在RAM中運(yùn)行。以下是主要是圖片示例。。。文字就不多描述了。。。。平臺(tái):KEIL FOR ARM5.0A注意:1、目標(biāo)代碼<RAM的空間其實(shí)KEIL已經(jīng)帶了這些例程了。下面我以LPC214XKIT學(xué)習(xí)板光盤(pán)目錄下的Arm_Uart0_AD_Demo 這個(gè)程序?yàn)槔匦陆ㄒ粋€(gè)Arm_Uart0_AD_Demo 這個(gè)例程保存名字為:Arm_Uart0_AD_Demo選擇芯片:LPC2142(看看你的是什么芯片就選什么)這里我選LPC2142然后加入:加入T_ad.c Uart0.cUartODemo.c Startup.s四個(gè)文件選擇項(xiàng)目輸出文件:我們?cè)贏rm_Uart0_AD_Demo目錄下建一個(gè)RAM的目錄“RAM”這個(gè)目錄取什么名都可以的。建個(gè)目錄方便管理點(diǎn)擊 SELECT floder for objects指定一下RAM的路徑即可。

    標(biāo)簽: keil ram

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

    上傳用戶:aben

主站蜘蛛池模板: 定边县| 琼中| 武川县| 于都县| 衡山县| 辉县市| 名山县| 滨海县| 南华县| 伊宁市| 门头沟区| 蒲城县| 巴林右旗| 甘德县| 淳化县| 察哈| 新巴尔虎右旗| 高青县| 红桥区| 桃园市| 惠水县| 辽宁省| 银川市| 济南市| 舞钢市| 中卫市| 辽宁省| 郸城县| 大埔县| 饶阳县| 务川| 墨脱县| 临湘市| 台江县| 哈密市| 鲜城| 昭平县| 浦东新区| 宣化县| 泸西县| 老河口市|