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

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

Z-mapping

  • MatLab工程數學應用 積分

    MatLab工程數學應用 積分,微分,導數,傳遞函數,拉式變換,Z-變換等等

    標簽: MatLab 工程數學 積分

    上傳時間: 2014-01-24

    上傳用戶:dreamboy36

  • 此程序實現了兩個板子的通信

    此程序實現了兩個板子的通信,在板子重啟的時候如果一個板子按鈕按住,則這個板子稱為發射節點,另一個板子成為接受節點,發射板子實時地將自己的X,Y,Z軸的數值發送給接受板子

    標簽: 程序 通信

    上傳時間: 2013-12-16

    上傳用戶:xzt

  • Flying™ RTK Solution as Effective Enhancement of Conventional Float RTK Dmitry Kozlov, Gleb Z

    Flying™ RTK Solution as Effective Enhancement of Conventional Float RTK Dmitry Kozlov, Gleb Zyryanov Magellan, Russia

    標簽: Conventional Enhancement Effective RTK

    上傳時間: 2017-09-09

    上傳用戶:ouyangtongze

  • Quake 3 s MD3 Viewer (july 13, 2007), loads and displays a player and a weapon. Supports lighting,

    Quake 3 s MD3 Viewer (july 13, 2007), loads and displays a player and a weapon. Supports lighting, texture mapping and animation. Includes a sample player model with weapon. See README for how to use it. Note (1): it uses the POSIX opendir/readdir functions, which are not implemented in all compilers under Windows (MinGW supports them). Note (2): This demo works on little endian architectures only. Libraries: OpenGL, GLU, GLUT, boost, libjpeg. Files: md3loader.zip (2.4 MB)

    標簽: and Supports displays lighting

    上傳時間: 2017-09-10

    上傳用戶:czl10052678

  • for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix

    for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix H = entropy([X Y Z]) this command will find the joint entropy for the 3 variables H = entropy([X,Y],[Z,W]) this will find H(X,Y/Z,W).. you can use it for any combination of joint entropies Please validate this function before using it

    標簽: entropy evaluate command matrix

    上傳時間: 2017-09-10

    上傳用戶:caozhizhi

  • 很多不等式在展開以后形成如下的對稱形式 sigma(s1^a1*s2^a2*...*sn^an)>=sigma(s1^b1*s2^b2*...*sn^bn) (當然 作為齊次不等式

    很多不等式在展開以后形成如下的對稱形式 sigma(s1^a1*s2^a2*...*sn^an)>=sigma(s1^b1*s2^b2*...*sn^bn) (當然 作為齊次不等式 a1+a2+....an=b1+b2+...bn 變量s1,s2,...sn非負) 其中sigma表示對稱和(也就是說 一共n!項) 例如 sigma(x^3)=x^3y^0z^0+x^3z^0y^0+y^3x^0z^0+y^3z^0x^0+z^3x^0y^0+z^3y^0x^0=2*(x^3+y^3+z^3) sigma(x^3y^2z^1)=x^3y^2z^1+x^3z^2y^1+y^3x^2z^1+y^3z^2x^1+z^3x^2y^1+z^3y^2x^1 (三元sigma 一共是6項) 有時候 我們把sigma(s1^a1*s2^a2*...*sn*an)寫作 [a1,a2,...an] 例如 著名的均值不等式可以寫成 [n,0,0...0]>=[1,1,1...1] 又比如x^2+y^2+z^2>=xy+yz+zx 寫成[2,0]>=[1,1] 本程序能比較兩個完全對稱不等式的大小關系。

    標簽: sigma sn an gt

    上傳時間: 2013-12-15

    上傳用戶:sclyutian

  • 深入淺出MFC,作者:侯俊杰,深入介紹Runtime Type Information(RTTI)、Dynamic Creation、Persistence(Serialization)、Messag

    深入淺出MFC,作者:侯俊杰,深入介紹Runtime Type Information(RTTI)、Dynamic Creation、Persistence(Serialization)、Message Mapping、Command Routing等核心技術。

    標簽: Serialization Information Persistence Creation

    上傳時間: 2014-01-10

    上傳用戶:moshushi0009

  • 卡爾曼濾波在AVR單片機的應用

    卡爾曼濾波在AVR單片機的應用,引腳接法:PC1 (ADC1) Y Accel (Pin 8) PC2 (ADC2) Z Accel (Pin 7) PC3 (ADC3) X Rate (Pin 3) PC4 (ADC4) Y Rate (Pin 4) PC5 (ADC5) VRef (Pin 5)

    標簽: AVR 卡爾曼濾波 單片機

    上傳時間: 2013-12-13

    上傳用戶:dengzb84

  • newpages_incognito.zip (79KB) - Complete

    newpages_incognito.zip (79KB) - Complete都不是馮小剛Z

    標簽: newpages_incognito.zip (79KB) - Complete

    上傳時間: 2015-04-28

    上傳用戶:grawol

  • Delphi 泛型容器 TDictionary 的用法 Demo

    Collection of key-value pairs.  TDictionary represents a generic collection of key-value pairs.  This class provides a mapping from a collection of keys to a collection of values. When you create a TDictionary object, you can specify various combinations of initial capacity, equality operation, and initial content.  You can add a key that is associated with a corresponding value with the Add or AddOrSetValue methods. You can remove entries with Remove or Clear, which removes all key-value pairs. Adding or removing a key-value pair and looking up a key are efficient, close to O(1), because keys are hashed. A key must not be nil (though a value may be nil) and there must be an equality comparison operation for keys.  You can test for the presence or keys and values with the TryGetValue, ContainsKey and ContainsValue methods.  The Items property lists all Count dictionary entries. You can also set and get values by indexing the Items property. Setting the value this way overwrites any existing value.  The class TObjectDictionary inherits from TDictionary and provides an automatic mechanism for freeing objects removed from dictionary entries. 

    標簽: Delphi 泛型

    上傳時間: 2015-07-01

    上傳用戶:mirage

主站蜘蛛池模板: 柳江县| 台南县| 朝阳县| 黄冈市| 壶关县| 顺昌县| 揭东县| 颍上县| 平潭县| 郸城县| 郯城县| 青神县| 承德县| 辽宁省| 三原县| 宁都县| 颍上县| 梁平县| 东乡族自治县| 甘洛县| 若尔盖县| 华池县| 八宿县| 平舆县| 花莲县| 遂川县| 屯门区| 景泰县| 夹江县| 利川市| 安平县| 青阳县| 阳朔县| 潮州市| 永胜县| 余姚市| 垫江县| 沁源县| 伊春市| 孟村| 靖江市|