CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - a=qr

搜索资源列表

  1. homework(1)prog

    0下载:
  2. 数值分析课程中Householder变换法对n阶矩阵A作正交分解A=QR
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:25.37kb
    • 提供者:甘雯
  1. QR-method

    0下载:
  2. 本程序是在数值分析中求特征值和特征向量的一种高效算法,叫带双步位移的QR方法,本程序使用C++编写。-This program is used in numerical analysis to get the eigenvalues and eigenvector. This is an efficient algorithm, called a two-step displacement QR method, the program uses C++ to prepare.
  3. 所属分类:Algorithm

    • 发布日期:2017-03-24
    • 文件大小:1.16kb
    • 提供者:李贺
  1. qr_rls

    1下载:
  2. 一个QR-RLS算法matlab程序,用于预失真技术。-A QR-RLS algorithm matlab program for pre-distortion technology.
  3. 所属分类:matlab例程

    • 发布日期:2013-03-30
    • 文件大小:950byte
    • 提供者:li tao
  1. QR

    2下载:
  2. 北航数值分析大作业 对矩阵进行QR分解 word文档 内附算法说明以及相关程序-Northern analysis of large numerical matrix operations on the QR decomposition algorithm for word document containing a descr iption, and related procedures
  3. 所属分类:Algorithm

    • 发布日期:2014-05-19
    • 文件大小:121kb
    • 提供者:vinilla
  1. qr

    1下载:
  2. 这是用MPI做的关于矩阵的qr分解的程序,程序中很好的实现了分解过程的并行性-This is done using MPI on the matrix qr decomposition procedures, procedures to achieve a good decomposition process parallelism
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:2.04kb
    • 提供者:印凤行
  1. Mapack_for_NET

    0下载:
  2. Mapack可用来做矩阵运算 Mapack is a .NET class library for basic linear algebra computations. It supports the following matrix operations and properties: Multiplication, Addition, Subtraction, Determinant, Norm1, Norm2, Frobenius Norm, Infinity Norm, Rank,
  3. 所属分类:Algorithm

    • 发布日期:2017-03-26
    • 文件大小:37.68kb
    • 提供者:Erison
  1. UCA_SMI

    0下载:
  2. QR分解SMI算法的目的正是要避免直接来解线性方程,而是将自相关矩阵分解,并利用Givens旋转实现数据矩阵的QR分解,最终将权矢量的求解问题转化为三角线性方程组的求解问题。-QR decomposition SMI algorithm, whose objective it is to avoid directly to solution of linear equations, but will auto-correlation matrix decomposition, and the u
  3. 所属分类:matlab

    • 发布日期:2017-04-07
    • 文件大小:954byte
    • 提供者:张亚光
  1. work

    0下载:
  2. QR factorization of an m × n matrix A with m ≥ n is a pair of matrices A = QR
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:1.43kb
    • 提供者:anaid
  1. Vblast_QRmatlab

    0下载:
  2. MIMO无线通信系统VBLAST算法的Matlab实现(QR分解)-Matlab realization of a MIMO system using VBLAST method (QR decomposition)
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:10.44kb
    • 提供者:王静
  1. Modi_Gram_S

    0下载:
  2. modified Gram-Schmidt (reduced QR factorization). A is a m-by-n matrix(m>=n)
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:647byte
    • 提供者:Ji Hye Park
  1. Gram_S

    0下载:
  2. classical Gram-Schmidt(unstable) (reduced QR factorization).A:m-by-n matrix. (m>=n)Q:m-by-n unitary matrix.R:n-by-n upper triangular.-classical Gram-Schmidt(unstable) (reduced QR factorization).A:m-by-n matrix. (m>=n)Q:m-by-n unitary matrix.R:
  3. 所属分类:matlab

    • 发布日期:2017-03-27
    • 文件大小:623byte
    • 提供者:Ji Hye Park
  1. qrtrannnn

    0下载:
  2. 功能:对矩阵A的左上角的m阶对角块作QR变换:先用Givens变换作QR分解A=QR, 再作相似变换A:=Q AQ=RQ. 输入: n阶HessenbergA,其中A(m+1,m)=0,m>2. 输出: 变换后的Hessenberg形矩阵A. 2 用基本QR算法求实方阵的全部特征值.-Function: the upper left corner of the matrix A, diagonal blocks of order m to QR transfor
  3. 所属分类:Algorithm

    • 发布日期:2017-03-27
    • 文件大小:968byte
    • 提供者:huanhuan
  1. Householder1

    0下载:
  2. to find the qr decomposition ion a matrix or a vector
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:1.5kb
    • 提供者:adi
  1. Valori_Proprii

    0下载:
  2. QR, Jacobi and Power Method for finding eigenvalues of a matrix.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:70.63kb
    • 提供者:stanica
  1. A_QR

    0下载:
  2. void qr(double *a, double *d, int n) 矩阵的QR分解 假设数组an*n在内存中按行优先次序存放,此函数使用HouseHolder变换将其就地进行QR分解。 d为输出参数,d[0,n)存放QR分解的上三角矩阵对角线元素。 bool householder(double const *qr, double const *d, double *b, int n) 求线性代数方程组的解。 假设矩阵qrn*n为某个矩阵an*n的QR分解,在内
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:1.82kb
    • 提供者:moontea
  1. QR

    0下载:
  2. 利用QR算法解household变换阵,用Householder变换法对矩阵A作正交分解-QR Algorithm for household use transformation matrix
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:21.91kb
    • 提供者:何鲁桂
  1. qr_code

    0下载:
  2. Descr iption A wrapper to the zxing library (http://code.google.com/p/zxing/). This submission includes files to encode a QR code from a string message, and decode a string message from an image containing an existing QR code. With little work the
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:14.93kb
    • 提供者:ganesh
  1. QR-matlab

    0下载:
  2. qr算法的matlab代码,利用矩阵的QR分解,逐步按递推法构造矩阵的分解序列的过程,只要原始矩阵式非奇异矩阵,则由QR算法就完全确定其分解序列了-qr algorithm matlab code using a QR decomposition of the matrix, step by step process of the recursive method to construct the matrix decomposition sequence, as long as the ori
  3. 所属分类:matlab

    • 发布日期:2017-11-04
    • 文件大小:574byte
    • 提供者:王喜
  1. qr-code

    0下载:
  2. This VI scan a QR code printed in any product and decode the information
  3. 所属分类:Algorithm

    • 发布日期:2017-04-29
    • 文件大小:34.5kb
    • 提供者:Fra
  1. QR-decomposition

    0下载:
  2. 矩阵A的QR分解.应用改进的Gram—Schmidt方法和Householder变换的方法计算矩阵A的QR分解.-QR decomposition of the matrix A. Application of modified Gram-Schmidt method and the method of calculation Householder transformation matrix A QR decomposition.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:7.37kb
    • 提供者:lumengyi
« 12 3 4 5 »
搜珍网 www.dssz.com