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

搜索资源列表

  1. multiplyofarrys

    0下载:
  2. 这是一个矩阵乘法 程序,按要求输入矩阵后可实现矩阵间的叉乘、点乘-This is a matrix multiplication multiplication procedure, as required input matrix matrix would be achieved by the fork, take points
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:34993
    • 提供者:沈刚
  1. juzenlianchen

    0下载:
  2. 1.能实现不同的个数的矩阵连乘. 2.最后矩阵大小是8X8. 3是最优的矩阵相乘. 描 述:给定n 个矩阵{A1, A2,...,An},其中Ai与Ai+1是可乘的,i=1,2…,n-1。考察这n个矩阵的连乘积A1A2...An。矩阵A 和B 可乘的条件是矩阵A的列数等于矩阵B 的行数。若A 是一个p x q矩阵,B是一个q * r矩阵,则其乘积C=AB是一个p * r矩阵,需要pqr次数乘。-1. To achieve a number of different mat
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:2785
    • 提供者:林小绵
  1. mathcoding

    0下载:
  2. C语言数学编程:包括叠代整除,阿姆斯特朗数,完数,乘法矩阵,多位阶乘,四分砝码等算法-C Programming Language Mathematics : iterative divisible including Armstrong, a few, several End, matrix multiplication, many factorial quarters algorithms such as weight
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:4933
    • 提供者:
  1. bmpelipse

    0下载:
  2. 实现矩阵的各种操作,加减乘,下载该类可放面以后的编程。-achieve the matrix operation, modified by downloading such caving face future programming.
  3. 所属分类:VHDL编程

    • 发布日期:2008-10-13
    • 文件大小:9477
    • 提供者:lovelywyd2001
  1. DynamicProgramming

    0下载:
  2. 矩阵连乘问题。C语言编写。从别人的网址传载的,请注意不要用于商业目的。-matrix continually multiply problems. C language. Others from the website - contained, please take care not to be used for commercial purposes.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:8270
    • 提供者:张雪庆
  1. fitqr

    0下载:
  2. 基于矩阵QR分解的最小二乘拟合MATLAB源程序-based on QR decomposition of the matrix least squares fitting MATLAB source
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1053
    • 提供者:胡琦
  1. ConsoleJava

    0下载:
  2. DotNet版的线性方程的解法,包括:高斯消元法,用于n阶非奇异矩阵;SVD分解法,求最小二乘解.目前还很难找到免费的DotNet版的数值计算程序.这里有源码(J#)和dll文件.-Kind version of the linear equation solution, including : Gaussian Elimination Act, for order n nonsingular matrix; SVD decomposition method, least squares sol
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:4317
    • 提供者:凃道
  1. DotMatrix

    1下载:
  2. DotNet版的线性方程的解法,包括:高斯消元法,用于n阶非奇异矩阵;SVD分解法,求最小二乘解.目前还很难找到免费的DotNet版的数值计算程序.这里有源码(J#)和dll文件.-Kind version of the linear equation solution, including : Gaussian Elimination Act, for order n nonsingular matrix; SVD decomposition method, least squares sol
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:2986
    • 提供者:凃道
  1. juzen

    0下载:
  2. 对于矩阵连乘积的最优计算次序问题,设计算Ai…j ,1≤i≤j≤n,所需的最少数乘次数为m[i,j],原问题的最优值为m[1,n]。 当i=j时,Ai…j=Ai为单一矩阵,无需计算,因此m[i,i]=0,i=1,2,…,n ; 当i<j时,可利用最优子结构性质来计算m[i,j]。事实上,若计算Ai…j的最优次序在Ak和Ak+1之间断开,i≤k<j,则:m[i,j]=m[i,k]+m[k+1,j]+rirk+1rj+1 。
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:869
    • 提供者:uhy
  1. CalculateLYD

    0下载:
  2. 多功能计算器,能够实现普通的加,减,乘,除外,还支持多项式计算以及矩阵的运算,操作方法和Matlabel相似-multifunction calculator, to achieve common, plus or minus, by, except, also supports polynomial calculations and matrix arithmetic, and the method of operation is similar to Matlabel
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:173584
    • 提供者:李一多
  1. TriMat

    0下载:
  2. 在目录“\\上三角矩阵类的实现”中给定了文件triMat.cpp、triMat.h,请把triMat.h文件中的9个填空位置补上正确的代码,使triMat.cpp能完成上三角矩阵的加、减、乘运算。要求输入: 输入矩阵维数:4 输入矩阵a的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 输入矩阵b的元素(包括0): 1 2 3 4 0 1 2 3 0 0 1 2 0 0 0 1 -in the di
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7880
    • 提供者:李昭明
  1. juzhenliancheng

    0下载:
  2. 确定计算矩阵连乘积的计算次序,使得依此次序计算矩阵连乘积需要的数乘次数最少。具有完整的源程序及实验报告-matrix calculation to determine the calculation of the product even order accordingly order makes even the product matrix calculation of the number needed by the least number. With the integrity of
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:11782
    • 提供者:王敏
  1. 03113111

    0下载:
  2. 动态规划 矩阵连乘问题 算法设计与分析 练习题 -dynamic programming matrix continually multiply problems algorithm design and analysis Exercises
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1611
    • 提供者:昭孜
  1. nlinfit

    0下载:
  2. 非线性最小二乘算法,矩阵和向量类为自己编写,用数组代替也可以-nonlinear least-squares algorithm, matrix and vector category for their preparation, with the array can be replaced
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:2004
    • 提供者:crane
  1. matrix_class

    0下载:
  2. 矩阵运算的类,可以方便地进行矩阵加,减,乘等运算。-matrix calculation of categories, and convenient for the matrix, plus or minus, by other operators.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:13815
    • 提供者:rting
  1. Householder

    1下载:
  2. Householder法求解最小二乘问题。可以避免常规方法遇到奇异矩阵(即行列式|A|接近零)时误差太大的问题。本方法的精度非常高。-Householder method least squares problems. Avoid conventional methods encountered singular matrix (that is determinant | A | close to zero) error much of a problem. The accuracy of th
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1659
    • 提供者:温泉
  1. jjsf

    0下载:
  2. 含有矩阵加、减、乘、除及转置、求逆运算等等,还需要改进-containing matrix, subtraction, multiplication, addition and to the home, seeking inverse operation, and so on, it is also necessary to improve
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:2536
    • 提供者:self
  1. juzhenxiangjiajian

    0下载:
  2. 用C++编的矩阵加减乘,内容完善,适合初学者-C series of the matrix modified by, as perfect for beginners
  3. 所属分类:Web服务器

    • 发布日期:2008-10-13
    • 文件大小:12319
    • 提供者:IOIO
  1. sdir2cas

    0下载:
  2. s平面中直接形式到级联形式的转换 %适合模拟滤波器的 %C为增益系数 %B为包含各bk的K乘3维实系数矩阵 %A为包含各ak的K乘3维实系数矩阵 %b为直接形式的分子多项式系数 %a为直接形式的分母多项式系数
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:1017
    • 提供者:吴江华
  1. dir2par

    1下载:
  2. %直接型到并联型的转换 % %[C,B,A]=dir2par(b,a) %C为当b的长度大于a时的多项式部分 %B为包含各bk的K乘2维实系数矩阵 %A为包含各ak的K乘3维实系数矩阵 %b为直接型分子多项式系数 %a为直接型分母多项式系数 %
  3. 所属分类:邮电通讯系统

    • 发布日期:2008-10-13
    • 文件大小:875
    • 提供者:吴江华
« 1 2 3 4 5 67 8 9 10 11 ... 28 »
搜珍网 www.dssz.com