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

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

TransforMATion

  • 雜湊法(Hashing)的搜尋與一般的搜尋法(searching)是不一樣的。在雜湊法中

    雜湊法(Hashing)的搜尋與一般的搜尋法(searching)是不一樣的。在雜湊法中,鍵值(key value)或識(shí)別字(identifier)在記憶體的位址是經(jīng)由函數(shù)(function)轉(zhuǎn)換而得的。此種函數(shù),一般稱之為雜湊函數(shù)(Hashing function)或鍵值對(duì)應(yīng)位址轉(zhuǎn)換(key to address TransforMATion)。對(duì)於有限的儲(chǔ)存空間,能夠有效使用且在加入或刪除時(shí)也能快的完成,利用雜湊法是最適當(dāng)不過(guò)了。因?yàn)殡s湊表搜尋在沒(méi)有碰撞(collision)及溢位(overflow)的情況下,只要一次就可擷取到。

    標(biāo)簽: searching Hashing

    上傳時(shí)間: 2016-01-14

    上傳用戶:dancnc

  • This belongs to the imagery processing design proposal, the topic is the digital image Fourier trans

    This belongs to the imagery processing design proposal, the topic is the digital image Fourier TransforMATion

    標(biāo)簽: the processing proposal Fourier

    上傳時(shí)間: 2013-12-02

    上傳用戶:dianxin61

  • HTML Parser is a Java library used to parse HTML in either a linear or nested fashion. Primarily use

    HTML Parser is a Java library used to parse HTML in either a linear or nested fashion. Primarily used for TransforMATion or extraction, it features filters, visitors, custom tags and easy to use JavaBeans. It is a fast, robust and well tested package.

    標(biāo)簽: HTML Primarily fashion library

    上傳時(shí)間: 2016-05-03

    上傳用戶:coeus

  • The tca package is a Matlab program that implements the tree-dependent component analysis (TCA) alg

    The tca package is a Matlab program that implements the tree-dependent component analysis (TCA) algorithms that extends the independent component analysis (ICA), where instead of looking for a linear transform that makes the data components independent, we are looking for components that can be best fitted in a tree structured graphical model. The TCA model can be applied in any situation where the data can be assumed to have been transformed by an unknown linear TransforMATion.

    標(biāo)簽: tree-dependent implements component analysis

    上傳時(shí)間: 2016-09-17

    上傳用戶:cazjing

  • 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

  • This paper provides a rigorous comprehensive approach to the design of the principal software algor

    This paper provides a rigorous comprehensive approach to the design of the principal software algorithmsutilized inmodern-day strapdown inertial navigationsystems: integration of angular rate into attitude, acceleration TransforMATion/integration into velocity, and integration of velocity into position.

    標(biāo)簽: comprehensive principal the approach

    上傳時(shí)間: 2016-10-18

    上傳用戶:蠢蠢66

  • 《重構(gòu)[改善既有代碼的設(shè)計(jì)中文版]/軟件工程系列》中文版

    《重構(gòu)[改善既有代碼的設(shè)計(jì)中文版]/軟件工程系列》中文版,侯捷等譯,Martin Fowler和本書另幾位作者清楚揭示了重構(gòu)過(guò)程,他們?yōu)槊嫦驅(qū)ο筌浖_發(fā)所做的貢獻(xiàn),難以衡量。本書解釋重構(gòu)的原理(principles)和最佳實(shí)踐方式(best practices),并指出何時(shí)何地你應(yīng)該開始挖掘你的代碼以求改善。本書的核心是一份完整的重構(gòu)名錄(catalog of refactoring),其中每一項(xiàng)都介紹一種經(jīng)過(guò)實(shí)證的代碼變換手法(code TransforMATion)的動(dòng)機(jī)和技術(shù)。

    標(biāo)簽: 代碼 軟件工程

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

    上傳用戶:417313137

  • Matlab 畫三維立體圖形

    Matlab 畫三維立體圖形 The aim of geom3d library is to handle and visualize 3D geometric primitives such as points, lines, planes, polyhedra... It provides low-level functions for manipulating 3D geometric primitives, making easier the development of more complex geometric algorithms.      Some features of the library are:   - creation of various shapes (3D points, 3D lines, planes, polyhedra...)     through an intuitive syntax.      Ex: createPlane(p1, p2, p3) to create a plane through 3 points.     - derivation of new shapes: intersection between 2 planes, intersection between     a plane and a line, between a sphere and a line...   - functions for 3D polygons and polyhedra. Polyhedra use classical vertex-faces     arrays (face array contain indices of vertices), and support faces with any     number of vertices. Some basic models are provided (createOctaedron,     createCubeoctaedron...), as well as some computation (like faceNormal or     centroid)      - manipulation of planar TransforMATion. Ex.:     ROT = createRotationOx(THETA);     P2  = transformPoint3d(P1, ROT);     - direct drawing of shapes with specialized functions. Clipping is performed      automatically for infinite shapes such as lines or rays. Ex:     drawPoint3d([50 50 25; 20 70 10], 'ro');    % draw some points     drawLine3d([X0 Y0 Z0 DX DY DZ]);            % clip and draw straight line Some functions require the geom2d package.       Additional help is provided in geom3d/Contents.m file, as well as summary files     like 'points3d.m' or 'lines3d.m'.

    標(biāo)簽: Matlab 畫三維立體圖形

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

    上傳用戶:A1321

  • Probability and Random Processes

    Many good textbooks exist on probability and random processes written at the under- graduate level to the research level. However, there is no one handy and ready book that explains most of the essential topics, such as random variables and most of their frequently used discrete and continuous probability distribution functions; moments, TransforMATion, and convergences of random variables; characteristic and generating functions; estimation theory and the associated orthogonality principle; vector random variables; random processes and their autocovariance and cross-covariance functions; sta- tionarity concepts; and random processes through linear systems and the associated Wiener and Kalman filters. 

    標(biāo)簽: Probability Processes Random and

    上傳時(shí)間: 2020-05-31

    上傳用戶:shancjb

  • Wireless Networks Multiusers Detection

    Wireless networking is undergoing a TransforMATion from what has been primarily a medium for supporting voice traffic between telephones, into what is increasingly becoming a medium for supporting traffic among a variety of digital devices transmitting media of many types (voice, data, images, video. etc.) Wireline networking underwent a similar TransforMATion in the 1990s, which led to an enormous build-up in the capacity of such networks, primarily through the addition of new optical fiber, switches and other infrastructure. 

    標(biāo)簽: Multiusers Detection Wireless Networks

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

    上傳用戶:shancjb

主站蜘蛛池模板: 开封县| 台东市| 阿坝| 平安县| 连江县| 台湾省| 利津县| 镶黄旗| 普宁市| 上饶市| 泌阳县| 嘉禾县| 新巴尔虎左旗| 怀集县| 大足县| 芦溪县| 西贡区| 曲沃县| 泸西县| 望城县| 杭锦旗| 昆山市| 梁平县| 固安县| 巴楚县| 宝丰县| 任丘市| 尤溪县| 府谷县| 嘉黎县| 长治县| 蒙山县| 余江县| 临海市| 上虞市| 盱眙县| 吉安县| 弋阳县| 读书| 普宁市| 长汀县|