CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 矩阵 c

搜索资源列表

  1. 用c编写的N*N的螺旋矩阵源代码

    0下载:
  2. /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() {     int i, j, num=1, a[N][N];     for(i=0; i<=N/2; i++) &nb
  3. 所属分类:其他小程序

    • 发布日期:2008-05-05
    • 文件大小:4.29kb
    • 提供者:good@588
  1. MATRIX1

    0下载:
  2. 针对矩阵类的编程,可以实现矩阵的相加,转置,相乘,单位阵,随机阵等。-For matrix-type programming, you can achieve the sum of matrices, transpose, multiplication, unit patches, such as a random array.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:14.96kb
    • 提供者:方奎
  1. c

    0下载:
  2. 本子程序根据所给的支路导纳及有关信息,形成结点--导纳矩阵,如打印参数K=1,则输出电导矩阵G和电纳矩B -Procedures based on the book of the slip road to the admittance and related information, the formation of node** admittance matrix, such as print parameters K = 1, the output conductance matrix G
  3. 所属分类:CSharp

    • 发布日期:2017-04-05
    • 文件大小:17.74kb
    • 提供者:张寒
  1. juzhengyilist

    1下载:
  2. 用C++先压缩稀疏矩阵于链表,再解压缩链表还原为稀疏矩阵-C++, the first compressed sparse matrix in the list, and then extract the list reduced to sparse matrix
  3. 所属分类:Other windows programs

    • 发布日期:2016-09-25
    • 文件大小:756byte
    • 提供者:dzily
  1. C

    0下载:
  2. 用C++求矩阵的逆矩阵,使用这个比较简单了,有更好的可以指教一下。-Matrix C++, the inverse matrix, the use of this relatively simple, what better to teach.
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:1.02kb
    • 提供者:徐斌
  1. 求逆矩阵的C代码

    0下载:
  2. 该函数代码实现求一个N阶方阵的逆矩阵的功能(The function code to achieve a N order inverse function of the square matrix)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:101kb
    • 提供者:朱迎昌
  1. 4.矩阵按键

    0下载:
  2. 8051单片机的矩阵按键程序,基于C编写。(8051 singlechip matrix button program)
  3. 所属分类:其他

    • 发布日期:2017-12-24
    • 文件大小:30kb
    • 提供者:peater
  1. C++实现矩阵的所有运算

    2下载:
  2. 矩阵的转置、行列式、秩、逆矩阵求法,矩阵的三角分解、qr分解,对称正定矩阵的乔里斯基分解及行列式值,奇异值分解,广义逆的奇异值分解,矩阵特征值与特征向量等等各种计算方法。(Transpose, rank, determinant, inverse matrix method of matrix decomposition, triangular decomposition of QR matrix, symmetric positive definite matrix and the deter
  3. 所属分类:Windows编程

    • 发布日期:
    • 文件大小:81kb
    • 提供者:sunguang216
  1. CUMCM-2017-problem-C

    0下载:
  2. c题,利用模糊矩阵求解最大最小值,并利用神经网络来进行训练,来预测和分析待测值。(C problem, using fuzzy matrix to solve maximum and minimum)
  3. 所属分类:其他

    • 发布日期:2017-12-25
    • 文件大小:13kb
    • 提供者:008
  1. 矩阵链乘C++

    0下载:
  2. 矩阵连乘: 设有矩阵M1,M2,M3,M4, 其维数分别是10×20, 20×50, 50×1 和1×100,现要求出这4个矩阵相乘的结果。我们知道,若矩阵A的维数是p×q,矩阵B的维数是q×r,则A与B相乘后所得矩阵AB的维数是p×r。按照矩阵相乘的定义,求出矩阵AB中的一个元素需要做q次乘法(及q-1次加法)。这样,要计算出AB就需要做p×q×r次乘法。为简单起见,且由于加法比同样数量的乘法所用时间要少得多,故这里我们暂不考虑加法的计算量。由于矩阵连乘满足结合律,故计算矩阵连乘的方
  3. 所属分类:Windows编程

    • 发布日期:2017-12-20
    • 文件大小:3kb
    • 提供者:皓子188
  1. 矩阵连乘

    0下载:
  2. 以几个矩阵为例,使用C++实现矩阵连乘动态规划(With a few matrix as an example, the use of C++ to achieve the matrix with dynamic programming)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:202kb
    • 提供者:荒芜_Demon
  1. 矩阵、减和乘代码实现

    1下载:
  2. 采用C++编程,用运算符重载实现矩阵的相加运算、相减运算以及相乘运算
  3. 所属分类:界面编程

  1. C++matrix

    1下载:
  2. 矩阵运算的c++实现,封装了矩阵常用运算的类(some calculation of Matrix, in the version of C++)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-07
    • 文件大小:72kb
    • 提供者:01011110
  1. 矩阵计算器

    0下载:
  2. 用于计算矩阵的一个小程序,除四则运算之外,还有矩阵化简,求逆等功能。(In addition to four operations, a small program for calculating the matrix has the functions of Matrix Simplification and inversion.)
  3. 所属分类:C#编程

    • 发布日期:2018-01-08
    • 文件大小:205kb
    • 提供者:不灭死神
  1. 矩阵链乘

    0下载:
  2. c++矩阵连乘问题得实现代码,c++实现(aj ksd hfjk ifo crv fsd s dsfsad df)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-10
    • 文件大小:291kb
    • 提供者:10101
  1. 02 数组矩阵

    0下载:
  2. C++代码,有关数组的实现已经编程。。。。。。。。。(C++ code, the implementation of the array has been programmed)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-10
    • 文件大小:1kb
    • 提供者:曹正纲
  1. Matrix

    0下载:
  2. 矩阵的基本运算的程序,包括矩阵的和、差、乘以及求逆。(The basic operation of the matrix program, including the matrix sum, difference, multiplication and inversion.)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-19
    • 文件大小:2.49mb
    • 提供者:HJL Kevin
  1. 稀疏矩阵

    0下载:
  2. 稀疏矩阵用C++来实现加减乘功能并可以输出矩阵(C++ implementation of sparse matrix addition and subtraction)
  3. 所属分类:其他

    • 发布日期:2018-04-20
    • 文件大小:251kb
    • 提供者:章鱼哥111
  1. 矩阵快速幂

    0下载:
  2. c++封装的矩阵快速幂,ACM常用!快速幂算法在矩阵的扩展。(C++ encapsulation of matrix fast power, ACM commonly used! The expansion of a fast power algorithm in a matrix.)
  3. 所属分类:其他

    • 发布日期:2018-04-21
    • 文件大小:1kb
    • 提供者:Lylist
  1. Gaussian function

    0下载:
  2. C语言编写的,输入行数和列数,直接生成二维高斯函数矩阵(C language, the number of input lines and columns directly generate two-dimensional Gaussian function matrix)
  3. 所属分类:C#编程

    • 发布日期:2018-04-23
    • 文件大小:360kb
    • 提供者:cjx_lhkfw
« 12 3 4 5 6 7 8 9 10 ... 32 »
搜珍网 www.dssz.com