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

搜索资源列表

  1. 多维数组-矩阵的压缩存储- 稀疏矩阵(一)

    0下载:
  2. 稀疏矩阵   设矩阵A mn 中有s个非零元素,若s远远小于矩阵元素的总数(即s<<m×n),则称A为稀疏矩阵。 1、稀疏矩阵的压缩存储   为了节省存储单元,可只存储非零元素。由于非零元素的分布一般是没有规律的,因此在存储非零元素的同时,还必须存储非零 元素所在的行号、列号,才能迅速确定一个非零元素是矩阵中的哪一个元素。稀疏矩阵的压缩存储会失去随机存取功能。   其中每一个非零元素所在的行号、列号和值组成一个三元组(i,j,
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:3.84kb
    • 提供者:snow
  1. My_struct

    0下载:
  2. 这是一些常用的排序,串,矩阵等算法数据结构中常用类-this is some sort of common, strings, matrix algorithm data structure used category
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:21.33kb
    • 提供者:许志平
  1. jvzhen

    0下载:
  2. 在别的网站的找的,矩阵类库源代码,给出了矩阵的操作。比较好用。-in other websites to find the matrix class library source code, is a matrix operation. Better quality.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:13.53kb
    • 提供者:lph
  1. DB05

    0下载:
  2. 矩阵运算的算法 用Type类数组创建矩阵对象 matrix(int rows,int cols) //创建矩阵,值为0 matrix(int n) //创建单位阵 matrix(const matrix &) //拷贝构造函数 BOOL Ismatrixf(){ return (rows==cols) } //判断矩阵是否为方阵 modifyrowscols(int rows,int cols) //修改矩阵的行列数 ~matrix() {del
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:50.37kb
    • 提供者:跑过的云
  1. CMatrixForCpp

    1下载:
  2. 一个以double类型为基类型的矩阵类,实现了矩阵的加、减、乘、转置、求逆等基本操作。VC++程序。-a type of double-types of matrices, the matrix to achieve the increase, subtraction, multiplication, transpose, basic inverse operation. VC procedures.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.94kb
    • 提供者:WM
  1. matrxicalulation

    0下载:
  2. 采用VC开发的矩阵计算类,里面有许多计算功能可以直接调用或修改使用-development of the VC using matrix calculation category, which has many functions can be calculated directly or modify the use of call
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:46.93kb
    • 提供者:gfwang
  1. DigitRec

    0下载:
  2. 基于神经网络的文字识别系统 本目录主要包括:文档和两个源代 其中源代码是识别程序的,另一个是矩阵类库的。已经保存了训练好的网络权值,所以第一次使用识别程序时,可以直接运行Release目录下的可执行文件,然后对图片目录中的测试图片进行读入、识别。当然也可以自行用训练样本训练网络,不过要注意训练样本的选择,否则可能识别率很低。训练样本选择的原则是,尽可能的有代表性,在训练时间不至于太长的情况下训练样本数目尽量多。
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:82.12kb
    • 提供者:杨华
  1. Chap10

    0下载:
  2. GDI+图形程序设计第十章源码,主要讲述坐标系统,变形,Maxtrix类应用及颜色矩阵.
  3. 所属分类:书籍源码

    • 发布日期:2008-10-13
    • 文件大小:58.19kb
    • 提供者:liuguifen
  1. verylong

    0下载:
  2. 大整数类,具有一般整数的几乎所有运算,具体包括:四则运算,输入输出,求模幂,乘法,矩阵求模幂,重载了所有int类型的运算符,int,long 等数据的兼容。使用方法与int,long等类型完全一致。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:6.23kb
    • 提供者:superred
  1. FCM的一种实现方法

    0下载:
  2. 请运行程序,并在程序所在文件夹下面创建文本文件:datain.txt和paramOut.txt,文件的详细说明见下面。程序的运行没有可视的界面,运行完毕之后会在该文件夹下面产生center.txt和matrix.txt两个文件,其中center.txt为聚类的中心,matrix.txt为隶属度矩阵。在运行本程序之前,先参考一下FCM聚类算法介绍.doc
  3. 所属分类:汇编语言

    • 发布日期:2009-05-15
    • 文件大小:1.85mb
    • 提供者:zjjaglj@126.com
  1. 2

    1下载:
  2. 银行家算法可以避免死锁。算法结构 n : 系统中进程个数 m :系统中的资源类数 1)available(m):现有资源向量 2) max(n,m):资源最大申请量 3)allocation(n,m):资源分配矩阵 4)need(n,m):进程以后还需要的资源矩阵 5)request(n,m):进程申请资源矩阵-Banker s algorithm to avoid deadlock. Algorithm structure n: the system proc
  3. 所属分类:OS Develop

    • 发布日期:2017-04-07
    • 文件大小:1.03kb
    • 提供者:斜阳
  1. searchupper

    0下载:
  2. 模糊聚类分析中在搜索矩阵的判定指标,指标上限的求解。-Fuzzy clustering analysis in the search matrix, the indicator cap solution.
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:836byte
    • 提供者:wyl
  1. 4-1Jacbi

    0下载:
  2. 对于阶数不高的方程组,直接法非常有效,对于阶数高,而系数矩阵稀疏的线性方程组却存在着困难,在这类矩阵中,非零元素较少,若用直接法求解,就要存贮大量零元素。为减少运算量、节约内存,使用迭代法更有利。-The order of the equations is not high, the direct method is very effective for high order, and the sparse coefficient matrix of linear equations, ther
  3. 所属分类:source in ebook

    • 发布日期:2017-04-05
    • 文件大小:828byte
    • 提供者:鲁亮
  1. SPARSE_CODE_DEMO

    0下载:
  2. C++实现的稀疏矩阵类,可实现稀疏矩阵的存储计算等功能-Now, instead of using 2D, we will use doubly-linked lists to present sparse matrices. There are various methods of organizing doubly-linked-lists. We not only store elements of sparse matrices but also implement operations
  3. 所属分类:MPI

    • 发布日期:2017-04-03
    • 文件大小:4.72kb
    • 提供者:xkx
  1. Matrix

    0下载:
  2. 矩阵类 实现矩阵的初等运算 包括加减乘除 求逆 转置-matrix
  3. 所属分类:assembly language

    • 发布日期:2017-04-06
    • 文件大小:22.04kb
    • 提供者:mayue
  1. squat

    0下载:
  2. 执行一个简单的C++四元类被称为“蹲”。根据Ken Shoemake的开创性论文普及,四元数代表了约一个轴旋转。“蹲”可以通过**=运营商连接在一起,并转换之间来回变换矩阵。实现还包括由Don Hatch的三维矢量宏库-Implementation of a simple C++ quaternion class called "Squat". Popularized by a seminal paper by Ken Shoemake, a quaternion represents a ro
  3. 所属分类:MiddleWare

    • 发布日期:2017-03-28
    • 文件大小:2.88kb
    • 提供者:peter
  1. MatrixExample

    0下载:
  2. 矩阵类中各种方法的应用示例,加减乘除等各种功能,经验证通过,大家放心使用-Matrices of various methods of sample application, addition, subtraction, and other features, proven through, rest assured to use
  3. 所属分类:source in ebook

    • 发布日期:2017-04-11
    • 文件大小:1.28kb
    • 提供者:WEI
  1. matrix

    0下载:
  2. 定义矩阵类的构造函数及实现; 求矩阵元素最大值; 求矩阵元素最小值; 析构造函数;-Define matrix type of structure function and realization For maximum matrix element For matrix element minimum Analysis structure functions
  3. 所属分类:MacOS develop

    • 发布日期:2017-11-10
    • 文件大小:1.18kb
    • 提供者:崔雯
  1. juzhen

    0下载:
  2. 实现一个矩阵类Matrix,要求能实现常用的矩阵运算如拷贝、加减乘、转置、查询或修 改某个矩阵元数的值。-Implement a matrix class Matrix, required to achieve the common matrix operations such as copy, subtraction, multiplication, transpose, query, or repair Number of matrix elements of a value ch
  3. 所属分类:assembly language

    • 发布日期:2017-04-13
    • 文件大小:1.6kb
    • 提供者:汤广宇
  1. juzhenlei

    0下载:
  2. 实现一个矩阵类Matrix,要求能实现常用的矩阵运算如拷贝、加减乘、转置、查询或修 改某个矩阵元数的值。-Implement a matrix class Matrix, required to achieve the common matrix operations such as copy, subtraction, multiplication, transpose, query, or repair Number of matrix elements of a value ch
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:1.45kb
    • 提供者:汤广宇
« 12 »
搜珍网 www.dssz.com