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

搜索资源列表

  1. MatrixChain_c++version

    0下载:
  2. 这是算法程序中用求矩阵连乘问题的c++实现,利用了动态规划的算法-This is the procedure used for algorithm continually multiply matrices of c, using a dynamic programming algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:43841
    • 提供者:阳林
  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. kalmanbucy

    0下载:
  2. 学习扩展卡尔曼滤波气的基本文件,可以随便下载并讨论-This is a tutorial on nonlinear extended Kalman filter (EKF). It uses the standard EKF fomulation to achieve nonlinear state estimation. Inside, it uses the complex step Jacobian to linearize the nonlinear dynamic system. Th
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:55069
    • 提供者:tongliang
  1. DYNPROG

    0下载:
  2. 动态规划方法是求解最优解的一种方法。用动态规划方法求解矩阵相乘。-Solving the dynamic programming method is a method of the optimal solution. Method using dynamic programming matrices.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-30
    • 文件大小:602
    • 提供者:workfuture
  1. 23456787654321

    0下载:
  2. 问题一:设a[0:n-1]是已排好序的数组。请改写二分搜索算法,使得当搜索元素x不在数组中时,返回小于x的最大元素位置i和大于x的最小元素位置j,当搜索元素在数组中时,i和j相同,均为x在数组中的位置。 问题二:采用分治策略实现对n个元素进行排序的合并排序算法,其基本思想是:将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 问题三:给定n个矩阵{A1,A2,A3,……,An},其中,Ai与Ai+1是可乘的,i=1,2,
  3. 所属分类:Other systems

    • 发布日期:2017-04-15
    • 文件大小:9313
    • 提供者:土咩豆
  1. matrix_mpi

    0下载:
  2. Multiplication of matrices of size and MxK HxM. ALL shipment must be made without blocking! Managing the process: 1. Asks for the dimensions of matrices M, K, N. 2. Produces dynamic formation and filling of matrix operands. 3. Prepares
  3. 所属分类:MPI

    • 发布日期:2017-05-10
    • 文件大小:2161796
    • 提供者:anyman
  1. Multiplicative-matrix

    0下载:
  2. 矩阵连乘:矩阵的连乘,利用动态规划算法解决次序问题-Multiplicative matrix: matrices with multiplication, the order of the dynamic programming algorithm to solve the problem
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:168359
    • 提供者:赵莉
  1. Matrix-Chain_JAVA

    0下载:
  2. Matrix Chain Multiplication is perhaps the quintessential example of dynamic programming. The problem can be stated as follows: given a chain <A1, A2,..., An> of n matrices, where for i = 1, 2,...,n, matrix Ai has dimension pi-1 x pi, fully par
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:1277
    • 提供者:Justas
  1. dynamic-planning

    0下载:
  2. 给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。考察这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序,这种计算次序可以用加括号的方式来确定。-Given n matrices {A1, A2, ..., An}, where Ai and Ai+1 is a mere of, i = 1,2, ..., n-1. Study the n matrix with the product A1A2 ...
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:740
    • 提供者:庞存岐
  1. Matrix-multiplication-problems-with

    0下载:
  2. 给定n个矩阵{A1,A2,…,An},其中Ai与Ai+1是可乘的,i=1,2,…,n-1。要算出这n个矩阵的连乘积A1A2…An。由于矩阵乘法满足结合律,故计算矩阵的连乘积可以有许多不同的计算次序。这种计算次序可以用加括号的方式来确定。若一个矩阵连乘积的计算次序完全确定,也就是说该连乘积已完全加括号,则可以依此次序反复调用2个矩阵相乘的标准算法计算出矩阵连乘积。本文的功能是采用动态规划算法,给出矩阵的一种最优的加括号方式,是计算量最小。-Given n matrices {A1, A2, ...
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:13712
    • 提供者:阿四
  1. main

    0下载:
  2. 计算两个任意矩阵的乘积,包括了动态分配内存,指针等知识点-Calculation of two arbitrary matrices, including the knowledge of the dynamic allocation of memory, the pointer points
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:688
    • 提供者:zhanglinwei
  1. matrix

    0下载:
  2. 3、 矩阵(三) 编写C++程序完成以下功能: (1) 用类来实现矩阵,定义一个矩阵的类,属性包括:  矩阵大小,用 lines, rows(行、列来表示);  存贮矩阵的数组指针,根据矩阵大小动态申请(new)。 (2) 矩阵类的方法包括:  构造函数,参数是矩阵大小,需要动态申请存贮矩阵的数组;  析构函数,需要释放矩阵的数组指针;  拷贝构造函数,需要申请和复制数组; 
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-27
    • 文件大小:1212
    • 提供者:
  1. EKF

    0下载:
  2. 非线性扩展卡尔曼滤波算法的matlab程序-Descr iption:This is a tutorial on nonlinear extended Kalman filter (EKF). It uses the standard EKF fomulation to achieve nonlinear state estimation. Inside, it uses the complex step Jacobian to linearize the nonlinear dyn
  3. 所属分类:Algorithm

    • 发布日期:2017-11-07
    • 文件大小:5442
    • 提供者:窦贤明
  1. matrix

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

    • 发布日期:2016-01-24
    • 文件大小:1024
    • 提供者:熊炜伟
  1. sy8

    1下载:
  2. 动态数组的实现 设矩阵A,B,C都是3*3矩阵,矩阵元素为整数类型,要求: 1.3个矩阵都采用动态数组进行存储; 2.编写实现C=A+B的函数; 3.编写实现C=A*B的函数。-Set up to implement dynamic arrays matrices A, B, C are 3* 3 matrix, the matrix elements of type integer requirements: 1.3 matrices are used to store dyn
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:679
    • 提供者:权东
  1. My_MatrixChain

    0下载:
  2. 矩阵连乘问题 -算法分析之动态规划 动态规划方法解决矩阵连乘问题,即寻求多个矩阵连乘时的最好的加括号方式使得总的乘法两最小; 可以设定矩阵个数,手动输入矩阵的阶,显示动态规划算法的表格,即乘法量和括号信息; 多文档,C++6.0- - Matrix continually multiply problems of dynamic programming algorithm for dynamic programming method to analyze and solve problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-18
    • 文件大小:4635114
    • 提供者:忘了
  1. naopeng

    0下载:
  2. 相参脉冲串复调制信号,用MATLAB实现动态聚类或迭代自组织数据分析,计算两个矩阵之间的欧氏距离。- Complex modulation coherent pulse train signal, Using MATLAB dynamic clustering or iterative self-organizing data analysis, Calculation of the Euclidean distance between the two matrices.
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:4665
    • 提供者:马小玲
  1. gaimie_V0.2

    1下载:
  2. 采用热核构造权重,计算两个矩阵之间的欧氏距离,用MATLAB实现动态聚类或迭代自组织数据分析。- Thermonuclear using weighting factors Calculation of the Euclidean distance between the two matrices, Using MATLAB dynamic clustering or iterative self-organizing data analysis.
  3. 所属分类:matlab

    • 发布日期:2017-05-04
    • 文件大小:5850
    • 提供者:赵保峰
  1. colt-1.2.0

    0下载:
  2. Colt是一个高性能的数学库,由以下几个子库构成: Colt库:基本的动态数组、稀疏矩阵、线性代数。 Jet库:数理统计、直方图。 CoreJava库:类printf的打印函数,并行计算。(Colt is a high performance math library composed of the following sub libraries: Colt libraries: basic dynamic arrays, sparse matrices, linear algebra.
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2017-12-23
    • 文件大小:3926016
    • 提供者:TMDtmd
搜珍网 www.dssz.com