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

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

Zero-tree

  • The main features of the considered identification problem are that there is no an a priori separati

    The main features of the considered identification problem are that there is no an a priori separation of the variables into inputs and outputs and the approximation criterion, called misfit, does not depend on the model representation. The misfit is defined as the minimum of the l2-norm between the given time series and a time series that is consistent with the approximate model. The misfit is equal to zero if and only if the model is exact and the smaller the misfit is (by definition) the more accurate the model is. The considered model class consists of all linear time-invariant systems of bounded complexity and the complexity is specified by the number of inputs and the smallest number of lags in a difference equation representation. We present a Matlab function for approximate identification based on misfit minimization. Although the problem formulation is representation independent, we use input/state/output representations of the system in order

    標簽: identification considered features separati

    上傳時間: 2016-09-20

    上傳用戶:FreeSky

  • StatSVN能夠從Subversion版本庫中取得信息

    StatSVN能夠從Subversion版本庫中取得信息,然后生成描述項目開發的各種表格和圖表。比如:代碼行數的時間線;針對每個開發者的代碼行數;開發者的活躍程度;開發者最近所提交的;文件數量;平均文件大小;最大文件;哪個文件是修改最多次數的;目錄大小;帶有文件數量和代碼行數的Repository tree。StatSVN當前版本能夠生成一組包括表格與圖表的靜態HTML文檔。

    標簽: Subversion StatSVN 版本

    上傳時間: 2013-12-18

    上傳用戶:牧羊人8920

  • 外國人開發的電磁時域有限差分方法工具包 Electromagnetic Finite-Difference Time-Domain (EmFDTD) is a basic two-dimensio

    外國人開發的電磁時域有限差分方法工具包 Electromagnetic Finite-Difference Time-Domain (EmFDTD) is a basic two-dimensional FDTD code developed at the School of Electrical Engineering, Sharif University of Technology. This code has been written based on the standard Yee s FDTD algorithm. Applications include propagation, scattering, and diffraction of electromagnetic waves in homogeneous and non-homogeneous isotropic media for in-plane propagating waves. Negative permittivites or permeabilities as well as dispersion is not included. Zero, Periodic, and Perfectly Matched Layer boundary conditions may be selectively applied to the solution domain. The program is best suited for study of propagation and diffraction of electromagnetic waves in Photonic Crystal structures. EmFDTD is written in MATLAB language and has been tested under MATLAB 5.0 and higher versions.

    標簽: Finite-Difference Electromagnetic two-dimensio Time-Domain

    上傳時間: 2014-11-24

    上傳用戶:watch100

  • xilinx里的乘法器ip核程序

    xilinx里的乘法器ip核程序,booth乘法 wallace tree算法 4-2壓縮編碼 超前進位加法

    標簽: xilinx 乘法器 程序

    上傳時間: 2016-10-17

    上傳用戶:ve3344

  • Joomla收費插件。建立商業登記

    Joomla收費插件。建立商業登記,商品,廣告,房地產,文件目錄 Mosets Tree is the only directory component for Joomla! that allows you to run large directory website with customizable templates, user ratings, Search Engine Friendly URLs and more. Fast, Simple and Flexible. Price: $110 USD

    標簽: Joomla 收費 插件

    上傳時間: 2016-10-20

    上傳用戶:釣鰲牧馬

  • 這個是嚴蔚敏版的數據結構上機教程中的部分源代碼

    這個是嚴蔚敏版的數據結構上機教程中的部分源代碼,都是自己寫的,包括最短路徑的dijkstra,floyd,最小生成樹的prim,kruskal以及鏈表,Huffman Tree等等的c++代碼

    標簽: 數據結構 教程 源代碼

    上傳時間: 2014-01-23

    上傳用戶:jhksyghr

  • The ADC0803 family is a series of three CMOS 8-bit successive approximation A/D converters using a

    The ADC0803 family is a series of three CMOS 8-bit successive approximation A/D converters using a resistive ladder and capacitive array together with an auto-zero comparator. These converters are designed to operate with microprocessor-controlled buses using a minimum of external circuitry. The 3-State output data lines can be connected directly to the data bus.

    標簽: approximation converters successive family

    上傳時間: 2016-11-20

    上傳用戶:libenshu01

  • 本目錄下的源代碼均屬示例、教學性質。作者不對這些代碼的功能和性能作任何擔保或承諾。 -------- 功能說明 -------- 本目錄下的程序用8種不同的方式實現了Huffman編碼

    本目錄下的源代碼均屬示例、教學性質。作者不對這些代碼的功能和性能作任何擔保或承諾。 -------- 功能說明 -------- 本目錄下的程序用8種不同的方式實現了Huffman編碼算法,這8種方式分別是 * huffman_a 使用鏈表結構生成Huffman樹的算法,這是最基本的實現方法,效率最低。 * huffman_b 使用《數據結構》(嚴蔚敏,吳偉民,1997,C語言版)中給出的算法,將二叉樹存放在連續空間里(靜態鏈表),空間的每個結點內仍有左子樹、右子樹、雙親等指針。 * huffman_c 使用Canonical Huffman編碼,同時對huffman_b的存儲結構進行改造,將二叉樹存放在連續空間tree里,空間的每個結點類型都和結點權值的數據類型相同,空間大小為2*num,tree[0]未用,tree[1..num]是每個元素的權值,生成Huffman后,tree[1..2*num-1]中是雙親結點索引。 * huffman_d 在huffman_c的基礎上,增加預先排序的功能先用QuickSort算法對所有元素的權值從小到大排序,這樣,排序后最前面的兩個元素就是最小的一對元素了。我們可以直接將它們挑出來,組合成一個子樹。然后再子樹的權值用折半插入法插到已排序的元素

    標簽: Huffman 目錄 源代碼 代碼

    上傳時間: 2013-12-20

    上傳用戶:franktu

  • An adaptive fuzzy integral sliding mode controller for mismatched time-varying linear systems is p

    An adaptive fuzzy integral sliding mode controller for mismatched time-varying linear systems is presented in this paper. The proposed fuzzy integral sliding mode controller is designed to have zero steady state system error under step inputs and alleviate the undesired chattering around the sliding surface

    標簽: time-varying controller mismatched adaptive

    上傳時間: 2014-12-04

    上傳用戶:luopoguixiong

  • 44b0公版的測試程序

    44b0公版的測試程序, ******************************************************* * NAME : 44BINIT.S * * Version : 10.JAn.2003 * * Description: * * C start up codes * * Configure memory, Initialize ISR ,stacks * * Initialize C-variables * * Fill zeros into zero-initialized C-variables *

    標簽: 44b0 測試程序

    上傳時間: 2013-12-22

    上傳用戶:teddysha

主站蜘蛛池模板: 济阳县| 虹口区| 闽侯县| 白水县| 彭阳县| 永州市| 乌鲁木齐县| 河池市| 库尔勒市| 泉州市| 平邑县| 大宁县| 手游| 佳木斯市| 栾城县| 调兵山市| 崇信县| 南漳县| 阿坝| 会同县| 双柏县| 仪征市| 常宁市| 安岳县| 侯马市| 盱眙县| 津市市| 嘉义市| 明水县| 武宁县| 仁怀市| 阳信县| 广东省| 安徽省| 诏安县| 中卫市| 大英县| 兴安盟| 赤壁市| 纳雍县| 桂平市|