MULTIDIMENSIONAL SCALING in matlab by Mark Steyvers 1999 %needs optimization toolbox %Modified by Bruce Land %--Data via globals to anaylsis programs %--3D plotting with color coded groups %--Mapping of MDS space to spike train temporal profiles as described in %Aronov, et.al. "Neural coding of spatial phase in V1 of the Macaque" in %press J. Neurophysiology
標(biāo)簽: MULTIDIMENSIONAL optimization Modified Steyvers
上傳時(shí)間: 2015-08-26
上傳用戶(hù):kytqcool
清華大學(xué)的研究生課程,鄭緯民教授講授的高等計(jì)算機(jī)系統(tǒng)結(jié)構(gòu),非常值得一看。
上傳時(shí)間: 2015-08-26
上傳用戶(hù):上善若水
JAVA游戲編程,j n l p文件類(lèi)型
標(biāo)簽: 游戲編程
上傳時(shí)間: 2014-08-15
上傳用戶(hù):gengxiaochao
DES( Data Encryption Standard)算法,于1977年得到美國(guó)政府的正式許可,是一種用56位密鑰來(lái)加密64位數(shù)據(jù)的方法。 IDEA是International Data Encryption Algorithm 的縮寫(xiě),是1990年由瑞士聯(lián)邦技術(shù)學(xué)院來(lái)學(xué)嘉X.J.Lai 和Massey提出的建議標(biāo)準(zhǔn)算法稱(chēng)作PES( Proposed Encryption Standard) 。Lai 和Massey 在1992 年進(jìn)行了改進(jìn)強(qiáng)化了抗差分分析的能力改稱(chēng)為IDEA 它也是對(duì)64bit大小的數(shù)據(jù)塊加密的分組加密算法密鑰長(zhǎng)度為128位它基于“相異代數(shù)群上的混合運(yùn)算”設(shè)計(jì)思想算法用硬件和軟件實(shí)現(xiàn)都很容易且比DES在實(shí)現(xiàn)上快的多。IDEA自問(wèn)世以來(lái),已經(jīng)經(jīng)歷了大量的詳細(xì)審查,對(duì)密碼分析具有很強(qiáng)的抵抗能力,在多種商業(yè)產(chǎn)品中被使用。
標(biāo)簽: Encryption Standard Data DES
上傳時(shí)間: 2015-08-27
上傳用戶(hù):Avoid98
英文版,pdf格式。 詳細(xì)說(shuō)明: Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edition) URL: http://www.amazon.com/exec/obidos/tg/detail/-/0201379236/ ISBN: 0201379236 Author: David R. Musser / Gillmer J. Derge / Atul Saini / Gilmer J. Derge Publisher: Addison-Wesley Page: 560 Edition: 2nd edition (March 27, 2001) Catalog: C++ Format: PDF Size: 3.8M Supplier: December Summary: The Standard Template Library was created as the first library of genetic algorithms and data structures, with four ideas in mind: generic programming, abstractness without loss of efficiency, the Von Neumann computation model, and value semantics. This guide provides a tutorial, a description of each element of the library, and sample applications. The expanded second edition includes new code examples and demonstrations of the use of STL in real-world C++ software development it reflects changes made to STL for the final ANSI/ISO C++ language standard.
標(biāo)簽: Programming Reference Standard Tutorial
上傳時(shí)間: 2015-09-02
上傳用戶(hù):Breathe0125
本書(shū)以最新的資訊家電、智慧型手機(jī)、PDA產(chǎn)品為出發(fā)點(diǎn),廣泛並深入分析相關(guān)的嵌入式系統(tǒng)技術(shù)。 適合閱讀: 產(chǎn)品主管、系統(tǒng)設(shè)計(jì)分析人員、欲進(jìn)入此領(lǐng)域的工程師、大專(zhuān)院校教學(xué). 本書(shū)效益: 為開(kāi)發(fā)嵌入式系統(tǒng)產(chǎn)品必備入門(mén)聖經(jīng) 進(jìn)入嵌入式系統(tǒng)領(lǐng)域的寶典 第三代行動(dòng)通訊終端設(shè)備與內(nèi)容服務(wù)的必備知識(shí).
上傳時(shí)間: 2015-09-03
上傳用戶(hù):阿四AIR
1.24位真彩色->256色灰度圖。 2.預(yù)處理:中值濾波。 3.二值化:用一個(gè)初始閾值T對(duì)圖像A進(jìn)行二值化得到二值化圖像B。 初始閾值T的確定方法是:選擇閾值T=Gmax-(Gmax-Gmin)/3,Gmax和Gmin分別是最高、最低灰度值。 該閾值對(duì)不同牌照有一定的適應(yīng)性,能夠保證背景基本被置為0,以突出牌照區(qū)域。 4.削弱背景干擾。對(duì)圖像B做簡(jiǎn)單的相鄰像素灰度值相減,得到新的圖像G,即Gi,j=|Pi,j-Pi,j-1|i=0,1,…,439 j=0,1,…,639Gi,0=Pi,0,左邊緣直接賦值,不會(huì)影響整體效果。 5.用自定義模板進(jìn)行中值濾波 區(qū)域灰度基本被賦值為0。考慮到文字是由許多短豎線(xiàn)組成,而背景噪聲有一大部分是孤立噪聲,用模板(1,1,1,1,1)T對(duì)G進(jìn)行中值濾波,能夠得到除掉了大部分干擾的圖像C。 6.牌照搜索:利用水平投影法檢測(cè)車(chē)牌水平位置,利用垂直投影法檢測(cè)車(chē)牌垂直位置。 7.區(qū)域裁剪,截取車(chē)牌圖像。
上傳時(shí)間: 2014-01-08
上傳用戶(hù):songrui
本書(shū)將帶領(lǐng)讀者從基本的系統(tǒng)使用、網(wǎng)路伺服器架設(shè)、到深入系統(tǒng)管理所需的知識(shí),並將筆者在管理公司及學(xué)校伺服器的經(jīng)驗(yàn)和讀者分享,期望對(duì)有心學(xué)習(xí) FreeBSD 的使用者有所助益。
上傳時(shí)間: 2015-09-06
上傳用戶(hù):wangzhen1990
編制函數(shù)prime,用來(lái)判斷整數(shù)n是否為素?cái)?shù):bool prime(int n); 而后編制主函數(shù),任意輸入一個(gè)大于4的偶數(shù)n,找出滿(mǎn)足n=i+j的所有數(shù)對(duì),其中要求i與j均為素?cái)?shù)(通過(guò)調(diào)用prime來(lái)判斷素?cái)?shù))。如偶數(shù)18可以分解為11+7以及13+5;而偶數(shù)80可以分解為:43+37、61+19、67+13、73+7。
上傳時(shí)間: 2015-09-09
上傳用戶(hù):jennyzai
OpenSG is a scenegraph system for realtime rendering, e.g. for Virtual Reality applications. It is just a library, not a full application. This documentation contains descriptions of the internal classes and concepts, as well as a tutorial that explains how to use the system.
標(biāo)簽: e.g. applications scenegraph for
上傳時(shí)間: 2015-09-13
上傳用戶(hù):bruce
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1