CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - Matrix

搜索资源列表

  1. matrix.rar

    0下载:
  2. 2、 矩阵(二) 编写C++程序完成以下功能: (1) 假定矩阵大小为4×5(整型); (2) 矩阵空间采用new动态申请,保存在指针中; (3) 定义矩阵初始化函数,可以从cin中输入矩阵元素; (4) 定义矩阵输出函数,将矩阵格式化输出到cout; (5) 定义矩阵相加的函数,实现两个矩阵相加的功能,结果保存在另一个矩阵中; (6) 定义矩阵相减的函数,实现两个矩阵相减的功能,结果保存在另一个矩阵中; (7) 动态申请三个矩阵:A1、A2、A3; (8) 初始化A1、A2;
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:631
    • 提供者:bedding
  1. Inverse-of-a-matrix

    0下载:
  2. 用C++语言编写的矩阵求逆的程序,源程序中使用的是3x3的矩阵,可以根据需要自己在程序中修改-Written in C++ language, the matrix inversion procedure is used in source code 3x3 matrix, can be modified in the program needs its own.
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:900920
    • 提供者:赖材栋
  1. matrix-inversion

    0下载:
  2. 使用c语言矩阵的求逆运算,可用,推荐下载-Using c language matrix inversion
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:3569
    • 提供者:张榕
  1. LDL-2.0.1.tar

    1下载:
  2. 对基于稀疏矩阵存储技术的对称正定稀疏矩阵进行LDL分解,C++编写-LDL is a set of concise routines for factorizing symmetric positive-definite sparse matrices, with some applicability to symmetric indefinite matrices. Its primary purpose is to illustrate much of the basic theory of
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:225831
    • 提供者:aaq
  1. matrix

    1下载:
  2. matrix相关函数及处理方法,在excel中使用的例子-correlation function and matrix approach, in the example of the use of excel
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1037047
    • 提供者:hy
  1. doa_wide_tct

    3下载:
  2. 宽带波达方向估计的matlab仿真程序,使用tct算法求聚焦矩阵然后由music算法估计。-Broadband DOA estimation matlab simulation program, using tct algorithm seeking focusing matrix estimation algorithm is then music.
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:2108
    • 提供者:王伟
  1. lmi

    1下载:
  2. 详细阐述了线性矩阵不等式的方法,并用一个实际例子,用matlab实现了,对初学者非常有用.-Described in detail the method of linear matrix inequalities, and a practical example, using matlab realized, very useful for beginners.
  3. 所属分类:Other windows programs

    • 发布日期:
    • 文件大小:5506
    • 提供者:husonglin
  1. Matrix

    0下载:
  2. 矩阵类加法的设计与实现 输入两个二维4*4的矩阵 实现这两个矩阵的加法-Matrix-type addition of the Design and Implementation of the importation of two two-dimensional matrix of 4* 4 matrix of the realization of these two adder
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:6132
    • 提供者:qls
  1. 2

    1下载:
  2. 基于线性矩阵不等式理论对网络控制系统的控制器设计及方法进行了详细阐述,并进行了仿真试验,验证了所提出的方法的有效性。-Based on linear matrix inequalities theory of networked control systems with controller design and methods in detail, and carried out a simulation test to verify the proposed method is effect
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:255673
    • 提供者:husonglin
  1. dianzhen

    0下载:
  2. 汉字点阵提取,包括24x24,16x16,12x12-Chinese character dot-matrix extraction, including 24x24, 16x16, 12x12
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:2571
    • 提供者:zzz
  1. DMC_ModelMatched

    0下载:
  2. 一个动态矩阵预测控制程序,用于对一种预测控制的研究-A dynamic matrix predictive control procedures for predictive control of a research
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:1460
    • 提供者:杨怀申
  1. Matrix

    1下载:
  2. 矩阵运算vb代码,可以进行进行矩阵运算,很实用,希望对大家有所帮助-Vb code matrix operations, matrix operations can be carried out, it is useful, I hope all of you to help
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:1687
    • 提供者:杨哲
  1. matrix

    0下载:
  2. 矩阵乘法 给定两个矩阵 A 和 B,其中 A 是具有 M 行、K 列的矩阵, B 为 K 行、N 列的矩阵, A 和 B 的矩阵积为矩阵 C, C 为 M 行、N 列。矩阵 C 中第 i 行、第 j 列的元素 Cij 就是矩阵 A 第 i 行每个元素和矩阵 B 第 j 列每个元素乘积的和,即 要求:每个 Ci j 的计算用一个独立的工作线程,因此它将会涉及生成 M×N 个工作线程。主 线程(或称为父线程)将初始化矩阵 A 和 B,并分配足够的内存给矩阵 C,它将容纳矩阵 A 和 B
  3. 所属分类:其他

    • 发布日期:2017-12-19
    • 文件大小:1024
    • 提供者:leser
  1. LED Matrix Basic

    0下载:
  2. This is Led dot matrix basic.
  3. 所属分类:其他

    • 发布日期:2017-12-27
    • 文件大小:81920
    • 提供者:Biswas
  1. edid-matrix-collection

    0下载:
  2. EDID MATRIX FIRMWARE COLLECTION for eprom i2c 24C02
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:89088
    • 提供者:vlk3ru
  1. matrix

    0下载:
  2. Make a matrix / Can rewrite
  3. 所属分类:其他

    • 发布日期:2018-01-01
    • 文件大小:808960
    • 提供者:YYSSHH
  1. Matrix C#

    0下载:
  2. Matrix calculation using c#
  3. 所属分类:其他

    • 发布日期:2018-04-19
    • 文件大小:1033216
    • 提供者:LQSWPU
  1. VBA6-Matrix

    0下载:
  2. solve matrix according to guass method by VB6
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:10240
    • 提供者:mnima
  1. Matrix

    0下载:
  2. Matrix(CSharp) c#实现卡尔曼滤波方程(Matrix (CSharp) c# implementation of Calman filter equation)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:16384
    • 提供者:dony_
  1. Matrix

    0下载:
  2. A small program that takes the size and elements of an integer matrix and applies operations on it
  3. 所属分类:其他

    • 发布日期:2018-05-07
    • 文件大小:270336
    • 提供者:Tryme
« 12 3 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com