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

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

line

  • a new method for identification of fast fading mobile channels. Estimates both the channel statistic

    a new method for identification of fast fading mobile channels. Estimates both the channel statistics and the time varying channel impulse respone on -line.

    標簽: identification Estimates statistic channels

    上傳時間: 2014-12-22

    上傳用戶:lz4v4

  • In this paper, it is designed a platform for least deviation linear interpolation with two axis line

    In this paper, it is designed a platform for least deviation linear interpolation with two axis linear guides, and it realizes the linear interpolator by PIC microprocessor with MPLAB C language in PIC microprocessor.

    標簽: interpolation deviation designed platform

    上傳時間: 2017-07-24

    上傳用戶:維子哥哥

  • 本文的主旨以討論 EMACS 的入門為主

    本文的主旨以討論 EMACS 的入門為主,其內容包括 EMACS 發展的概述, EMACS 整合 環境的簡介以及 EMACS 的基石 - editor 的詳談。本文在結構上分成八章,第一章討論有 關 EMACS 的源起、發展歷史以及 EMACS 的特性簡介。 第二章討論 EMACS 的 on-line help。第三章則簡單介紹 EMACS 的整合環境。接下來就是本文的重點,探討 EMACS 的 本質。

    標簽: EMACS

    上傳時間: 2013-12-16

    上傳用戶:wff

  • Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state

    Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state and heuristic (N or S) from EightPuzzle.INP file.0 representing blank. There are 2 Heuristic: 1. N: Number of misplaced tiles 2. S: Sum of Manhattan distance of current location and target location. Format: The first line write type of heuristic (N or S). Next is the status of departing and landing status. Between 2 states of 1 line blank. See examples EightPuzzle.INP

    標簽: state algorithme Program problem

    上傳時間: 2017-08-12

    上傳用戶:jjj0202

  • Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test c

    Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test case, the first line contains the number of vertices (n) and the number of arcs (m). Then, there exist m lines, one for each arc (source vertex, ending vertex and arc weight, separated by a space). The nodes are numbered from 1 to n. The node 1 and node n should be in different sets. There are no more than 30 arcs and 15 nodes. The arc weights vary between 1 and 1 000 000. Output: The output is a single line for each case, with the corresponding minimum size cut. Example: Input: 7 11 1 2 3 1 4 3 2 3 4 3 1 3 3 4 1 3 5 2 4 6 6 4 5 2 5 2 1 5 7 1 6 7 9 Output: 5

    標簽: Implementation calculates algorithm Edmonds

    上傳時間: 2014-01-04

    上傳用戶:kiklkook

  • PseudoQ is an open source java application for creating, playing and solving SuDoku puzzles of vario

    PseudoQ is an open source java application for creating, playing and solving SuDoku puzzles of various types. It features both a Swing GUI and command-line operation. The automatic solving of puzzles uses "smart" techniques rather than a brute force search of every possible combination.

    標簽: application creating PseudoQ playing

    上傳時間: 2014-01-06

    上傳用戶:yiwen213

  • AVR single-chip developed by a very low threshold, as long as the computer will be able to study the

    AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."

    標簽: single-chip developed threshold the

    上傳時間: 2017-09-12

    上傳用戶:shinesyh

  • AVR single-chip developed by a very low threshold, as long as the computer will be able to study the

    AVR single-chip developed by a very low threshold, as long as the computer will be able to study the development of AVR microcontroller. Only a single-chip ISP download beginners line, the editing, debugging of software programs through a direct line into the AVR microcontroller, which can develop AVR Series Single-chip package of a variety of devices. AVR single-chip microcomputer in the industry known as "front-line struggle to seize state power."

    標簽: single-chip developed threshold the

    上傳時間: 2013-12-09

    上傳用戶:invtnewer

  • TdcHintEx Provides your users with a cool transparent hint. It replaces standard Delphi hint wind

    TdcHintEx Provides your users with a cool transparent hint. It replaces standard Delphi hint window. Just drop a TdcHintEx in your main form. Set Enabled to True. And run your application. Oh btw, please set ShowHint to True.. :) Drop me a line, and tell me what you think of it. Antony Hoon antony7777@telkom.net

    標簽: hint transparent TdcHintEx Provides

    上傳時間: 2014-01-12

    上傳用戶:181992417

  • 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'.

    標簽: Matlab 畫三維立體圖形

    上傳時間: 2015-11-02

    上傳用戶:A1321

主站蜘蛛池模板: 张家口市| 通许县| 封开县| 施甸县| 亳州市| 揭西县| 衡水市| 平南县| 乐山市| 合作市| 神农架林区| 胶州市| 韶关市| 广德县| 古蔺县| 新平| 通化市| 即墨市| 安吉县| 华蓥市| 耒阳市| 宝丰县| 通城县| 建水县| 杭锦后旗| 大埔县| 岱山县| 鄄城县| 宜城市| 三门县| 西宁市| 汶上县| 兴和县| 桃江县| 德保县| 奉节县| 金山区| 房山区| 武胜县| 洪江市| 临沧市|