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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

MULTIPLE-Input

  • The purpose of this computer program is to allow the user to construct, train and test differenttype

    The purpose of this computer program is to allow the user to construct, train and test differenttypes of artificial neural networks. By implementing the concepts of templates, inheritance andderived classes from C++ object oriented programming, the necessity for declaring multiple largestructures and duplicate attributes is reduced. Utilizing dynamic binding and memory allocationafforded by C++, the user can choose to develop four separate types of neural networks:

    標(biāo)簽: differenttype construct computer purpose

    上傳時間: 2013-12-06

    上傳用戶:13517191407

  • 無線仿真Matlab代碼

    無線仿真Matlab代碼,Matlab scripts to generate input trace files. Changed in January 2005

    標(biāo)簽: Matlab 無線 仿真 代碼

    上傳時間: 2015-04-13

    上傳用戶:wkchong

  • 文具倉庫管理系統(tǒng)2.0(源碼)delphi+access main in Mainmain.pas {FrmMain}, Login in LoginLogin.pas {FrmLogin},

    文具倉庫管理系統(tǒng)2.0(源碼)delphi+access main in Main\main.pas {FrmMain}, Login in Login\Login.pas {FrmLogin}, Logo in Login\Logo.pas {FrmLogo}, Global in Share\Global.pas , BaseSetup in BaseSetup\BaseSetup.pas {FrmBaseSetup}, dm in Share\dm.pas {DM_Wjckgl: TDataModule}, About in Help\About.pas {FrmAbout}, InputGoods in Input\InputGoods.pas {FrmInputGoods},

    標(biāo)簽: LoginLogin pas Mainmain FrmLogin

    上傳時間: 2013-12-16

    上傳用戶:1427796291

  • PrintNow is a 32-bit application that runs only under Windows 95 or Windows NT 4.0. It allows your

    PrintNow is a 32-bit application that runs only under Windows 95 or Windows NT 4.0. It allows your PrtScr and Alt+PrtScr keys to print a screen capture directly to your printer instead of just copying the image to the Windows clipboard. PrintNow can also print any DIB image in the clipboard, regardless of its original source. PrintNow supports multiple instances, it can print multiple copies of a screen capture to the same printer with different print settings, to several different printers, or any combination thereof, with a single keystroke.

    標(biāo)簽: Windows application PrintNow allows

    上傳時間: 2015-04-27

    上傳用戶:zhanditian

  • 建議的詞法分析器

    建議的詞法分析器,界面友好,用戶把文法放在input文檔中,由程序調(diào)用,在ouput文檔中給出分析結(jié)果,

    標(biāo)簽: 分析器

    上傳時間: 2015-04-27

    上傳用戶:gxf2016

  • LVQ學(xué)習(xí)矢量化算法源程序 This directory contains code implementing the Learning vector quantization network.

    LVQ學(xué)習(xí)矢量化算法源程序 This directory contains code implementing the Learning vector quantization network. Source code may be found in LVQ.CPP. Sample training data is found in LVQ1.PAT. Sample test data is found in LVQTEST1.TST and LVQTEST2.TST. The LVQ program accepts input consisting of vectors and calculates the LVQ network weights. If a test set is specified, the winning neuron (class) for each neuron is identified and the Euclidean distance between the pattern and each neuron is reported. Output is directed to the screen.

    標(biāo)簽: implementing quantization directory Learning

    上傳時間: 2015-05-02

    上傳用戶:hewenzhi

  • This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simula

    This project is created using the Keil ARM CA Compiler. The Logic Analyzer built into the simulator may be used to monitor and display any variable or peripheral I/O register. It is already configured to show the PWM output signal on PORT3.0 and PORT3.1 This ARM Example may be debugged using only the uVision Simulator and your PC--no additional hardware or evaluation boards are required. The Simulator provides cycle-accurate simulation of all on-chip peripherals of the ADuC7000 device series. You may create various input signals like digital pulses, sine waves, sawtooth waves, and square waves using signal functions which you write in C. Signal functions run in the background in the simulator within timing constraints you configure. In this example, several signal functions are defined in the included Startup_SIM.INI file.

    標(biāo)簽: the Analyzer Compiler project

    上傳時間: 2013-12-19

    上傳用戶:Yukiseop

  • This example program shows how to configure and use the A/D Converter of the following microcontroll

    This example program shows how to configure and use the A/D Converter of the following microcontroller: STMicroelectronics ST10F166 After configuring the A/D, the program reads the A/D result and outputs the converted value using the serial port. To run this program... Build the project (Project Menu, Build Target) Start the debugger (Debug Menu, Start/Stop Debug Session) View the Serial Window (View Menu, Serial Window #1) View the A/D converter peripheral (Peripheral Menu, A/D Converter) Run the program (Debug Menu, Go) A debug script (debug.ini) creates buttons that set different analog values in A/D channels. As the program runs, you will see the A/D input and output change. Other buttons create signals that generate sine wave or sawtooth patterns as analog inputs. µ Vision3 users may enable the built-in Logic Analyzer to view, measure and compare these input signals graphically.

    標(biāo)簽: microcontroll Converter configure following

    上傳時間: 2014-12-01

    上傳用戶:獨孤求源

  • to show the waveform of audio file and play it on computer Purpose: Familiar with WAV file format a

    to show the waveform of audio file and play it on computer Purpose: Familiar with WAV file format and UI design It should have the following functions: Provide a Graphic User Interface for user to browse the file system and select one WAV file Show the waveform of input audio signal Play the selected WAV file Print the parameters of WAV file such as sampling rate, bit-depth, etc

    標(biāo)簽: file Familiar computer waveform

    上傳時間: 2015-05-07

    上傳用戶:l254587896

  • 數(shù)字運算

    數(shù)字運算,判斷一個數(shù)是否接近素數(shù) A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標(biāo)簽: 數(shù)字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

主站蜘蛛池模板: 塘沽区| 和林格尔县| 新化县| 房产| 乌恰县| 富裕县| 册亨县| 涞源县| 承德市| 纳雍县| 南靖县| 庆云县| 越西县| 南皮县| 古浪县| 康保县| 香格里拉县| 勃利县| 乌恰县| 海口市| 安顺市| 文水县| 望江县| 邵阳市| 库尔勒市| 香河县| 荣成市| 龙井市| 荃湾区| 上犹县| 新闻| 习水县| 任丘市| 阿克苏市| 夹江县| 钟祥市| 会宁县| 南江县| 常山县| 日土县| 阜阳市|