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

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

matrix-vector

  • 功能:在默認有唯一解的情況下

    功能:在默認有唯一解的情況下,求出一次方程組的解 使用說明:1.在方程計算器所在目錄下新建一個文本文檔并另存為“matrix”(注意文件名的大小寫和拼寫) 格式: 第一行是未知數個數n 后面每行n+1個用空格隔開的數,表示一個方程 (e.g) 2x+3y-z=6 就輸入 2 3 -1 6 2.保存之后雙擊運行“方程計算器” 3.程序會在目錄下生成名為“answer”的文本文檔,打開就是答案了。

    標簽:

    上傳時間: 2016-05-02

    上傳用戶:xg262122

  • 支持向量機

    支持向量機,用于分類。Classify using (a very simple implementation of) the support vector machine algorithm

    標簽: 支持向量機

    上傳時間: 2014-01-11

    上傳用戶:hphh

  • 主要是修改了一些2.3.0版本的Bug

    主要是修改了一些2.3.0版本的Bug,特別是當autoCommit=false的情況下以及多線程添加Document,有些字段打開了term-vector有些沒有打都會對索引數據造成破壞 autoCommit 選項是從2.2.0版本就添加了,默認是true,我對這個參數還不是很理解,都是用的默認值true。所以沒有碰到問題。 2.3.1版本沒有包含任何新的功能,索引文件的格式也沒有變化,完全兼容2.3.0版本。 官方鼓勵所有使用2.3.0版本的應用盡快升級到2.3.1版本。

    標簽: Bug 修改 版本

    上傳時間: 2013-12-16

    上傳用戶:wkchong

  • This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseud

    This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).

    標簽: LDPC introduction simulation software

    上傳時間: 2014-01-14

    上傳用戶:大融融rr

  • A Web Tutorial on Discrete Features of Bayes Decision Theory This applet allows for the calculation

    A Web Tutorial on Discrete Features of Bayes Decision Theory This applet allows for the calculation of the decision boundary given a three dimensional feature vector. Specifically, by stipulating the variables such as the priors, and the conditional likelihoods of each feature with respect to each class, the changing decision boundary will be displayed.

    標簽: calculation Tutorial Discrete Decision

    上傳時間: 2013-12-22

    上傳用戶:hxy200501

  • 一本關于stl的免費電子書

    一本關于stl的免費電子書,包括容器,vector和string,關聯容器,迭代器,算法,仿函數等內容。

    標簽: stl 電子書

    上傳時間: 2013-12-22

    上傳用戶:498732662

  • This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseud

    This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).

    標簽: LDPC introduction simulation software

    上傳時間: 2014-12-05

    上傳用戶:change0329

  • ICETEK–VC5509-A 評估板定時器實驗.實驗程序的工程中包含了兩種源代碼

    ICETEK–VC5509-A 評估板定時器實驗.實驗程序的工程中包含了兩種源代碼,主程序采用C 語言編制利于控制,中斷向量表在 vector.asm 匯編語言文件中,利于直觀地控制存儲區分配。

    標簽: ICETEK 5509 實驗 VC

    上傳時間: 2013-12-08

    上傳用戶:我們的船長

  • The CoinUtils project is a collection of open-source utilities developed and used by a variety of ot

    The CoinUtils project is a collection of open-source utilities developed and used by a variety of other projects in the COIN-OR repository. The project includes classes for storing and manipulating sparse matrices and vectors, performing matrix factorization, parsing input files in standard formats, building representations of mathematical programs, comparing floating point numbers with a tolerance, performing simple presolve operations, and warm starting algorithms for mathematical programs, among others.

    標簽: open-source collection CoinUtils developed

    上傳時間: 2013-12-19

    上傳用戶:xmsmh

  • C++STL STL(Standard Template Library

    C++STL STL(Standard Template Library,標準模板庫)是惠普實驗室開發的一系列軟件的統稱。它是由Alexander Stepanov、Meng Lee和David R Musser在惠普實驗室工作時所開發出來的。現在雖說它主要出現在C++中,但在被引入C++之前該技術就已經存在了很長的一段時間。 STL的代碼從廣義上講分為三類:algorithm(算法)、container(容器)和iterator(迭代器),幾乎所有的代碼都采用了模板類和模版函數的方式,這相比于傳統的由函數和類組成的庫來說提供了更好的代碼重用機會。在C++標準中,STL被組織為下面的13個頭文件:<algorithm>、<deque>、<functional>、<iterator>、<vector>、<list>、<map>、<memory>、<numeric>、<queue>、<set>、<stack>和<utility>。以下筆者就簡單介紹一下STL各個部分的主要特點。

    標簽: STL Standard Template Library

    上傳時間: 2016-06-20

    上傳用戶:cylnpy

主站蜘蛛池模板: 那曲县| 台安县| 民权县| 铜梁县| 清丰县| 汉川市| 太和县| 石渠县| 铁力市| 科技| 莱阳市| 龙井市| 陈巴尔虎旗| 南宁市| 桑植县| 莫力| 柳林县| 甘谷县| 台安县| 平江县| 温州市| 揭东县| 宁阳县| 北川| 广灵县| 松滋市| 潮州市| 天长市| 望奎县| 肥东县| 汉川市| 西乌| 彰武县| 胶南市| 获嘉县| 湘西| 盐津县| 皮山县| 泾源县| 沭阳县| 石台县|