matlab實(shí)現(xiàn)最優(yōu)化選擇的一個(gè)算法,大家可以下下來(lái)參考,我也是從別處down的,謝謝原作者
上傳時(shí)間: 2013-12-15
上傳用戶:685
關(guān)于extjs詳細(xì)開(kāi)發(fā)的文檔,我也是從網(wǎng)絡(luò)上down下來(lái)的,好東西不敢一個(gè)人獨(dú)享,分享出來(lái)給大家,
上傳時(shí)間: 2016-12-24
上傳用戶:小草123
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
標(biāo)簽: file functions FileEdit BACKSPAC
上傳時(shí)間: 2017-01-02
上傳用戶:風(fēng)之驕子
xl系列單片機(jī)實(shí)驗(yàn)儀演示程序 DS18B20溫度控制數(shù)碼管 。 DS18B20溫度控制數(shù)碼管顯示 : 1、K3 → 進(jìn)入設(shè)定溫度報(bào)警值 TL 狀態(tài): L--20 2、K3 → 進(jìn)入設(shè)定溫度報(bào)警值 TH 狀態(tài): H--28 3、K3 → 返回 4、設(shè)定過(guò)程: K1 →加鍵 (UP), K2 →減鍵 (DOWN),可快速調(diào)。
上傳時(shí)間: 2013-12-11
上傳用戶:Altman
void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }
標(biāo)簽: int Knight printf board
上傳時(shí)間: 2014-01-17
上傳用戶:cxl274287265
CYPRESS專門針對(duì)電動(dòng)自行車開(kāi)發(fā)的產(chǎn)品CY8C24533。該產(chǎn)品為內(nèi)部編號(hào),數(shù)據(jù)手冊(cè)和參考資料在CYPRESS公開(kāi)網(wǎng)站上DOWN不到。這份資料是該產(chǎn)品的參考手冊(cè)。
標(biāo)簽: CYPRESS C24533 24533 CY8
上傳時(shí)間: 2017-02-06
上傳用戶:TF2015
--文件名:mine4.vhd。 --功能:實(shí)現(xiàn)4種常見(jiàn)波形正弦、三角、鋸齒、方波(A、B)的頻率、幅度可控輸出(方波 --A的占空比也是可控的),可以存儲(chǔ)任意波形特征數(shù)據(jù)并能重現(xiàn)該波形,還可完成 --各種波形的線形疊加輸出。 --說(shuō)明: SSS(前三位)和SW信號(hào)控制4種常見(jiàn)波形種哪種波形輸出。4種波形的頻率、 --幅度(基準(zhǔn)幅度A)的調(diào)節(jié)均是通過(guò)up、down、set按鍵和4個(gè)BCD碼置入器以及一 --個(gè)置入檔位控制信號(hào)(ss)完成的(AMP的調(diào)節(jié)范圍是0~5V,調(diào)節(jié)量階為1/51V)。 --其中方波的幅度還可通過(guò)u0、d0調(diào)節(jié)輸出數(shù)據(jù)的歸一化幅值(AMP0)進(jìn)行進(jìn)一步 --細(xì)調(diào)(調(diào)節(jié)量階為1/(51*255)V)。方波A的占空比通過(guò)zu、zp按鍵調(diào)節(jié)(調(diào)節(jié) --量階1/64*T)。系統(tǒng)采用內(nèi)部存儲(chǔ)器——RAM實(shí)現(xiàn)任意輸入波形的存儲(chǔ),程序只支 --持鍵盤式波形特征參數(shù)置入存儲(chǔ),posting 為進(jìn)入任意波置入(set)、清除(clr)狀態(tài) --控制信號(hào),SSS控制存儲(chǔ)波形的輸出。P180為預(yù)留端口,
上傳時(shí)間: 2017-02-09
上傳用戶:z1191176801
This software package contains the USB framework core developped by ATMEL, as well as a CDC driver for an USB to serial converter. The following files are included : - core/ -> Source code for the framework core -> Makefile for the core - cdc/ -> Source code for the CDC driver -> Makefile for the CDC driver - lib/ -> Lib v3 files for every supported chips - bin/ -> Compiled binaries for every supported chips - ./ -> Makefile for the framework -> Startup file
標(biāo)簽: developped framework software contains
上傳時(shí)間: 2017-02-14
上傳用戶:qq1604324866
To review what a metaball is, and how to render them and to describe a new optimization I ve made for rendering metaballs. For complex scenes, it can render hundreds of times faster, though I m certain others have discovered this trick as well. It does very slightly change the characteristic shape of the blobs, but there is no loss in image quality whatsoever. (I actually developed all this about two years ago, but just now felt like writing it all down, and had the time!)
標(biāo)簽: optimization and metaball describe
上傳時(shí)間: 2013-12-27
上傳用戶:彭玖華
This sample shows different ways of performing anti-aliasing - both by using only the native hardware AA support, and by mixing the hardware modes with additional supersampling. There are various ways in which the supersampled image can be down-sampled. The way we do the downsampling in this example is the same technique that was used in 2 of our latest launch demos – “Froggy” and “Adrianne”.
標(biāo)簽: anti-aliasing performing different sample
上傳時(shí)間: 2014-01-11
上傳用戶:haohaoxuexi
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1