搜索资源列表
多维数组-矩阵的压缩存储- 稀疏矩阵(一)
- 稀疏矩阵 设矩阵A mn 中有s个非零元素,若s远远小于矩阵元素的总数(即s<<m×n),则称A为稀疏矩阵。 1、稀疏矩阵的压缩存储 为了节省存储单元,可只存储非零元素。由于非零元素的分布一般是没有规律的,因此在存储非零元素的同时,还必须存储非零 元素所在的行号、列号,才能迅速确定一个非零元素是矩阵中的哪一个元素。稀疏矩阵的压缩存储会失去随机存取功能。 其中每一个非零元素所在的行号、列号和值组成一个三元组(i,j,
My_struct
- 这是一些常用的排序,串,矩阵等算法数据结构中常用类-this is some sort of common, strings, matrix algorithm data structure used category
jvzhen
- 在别的网站的找的,矩阵类库源代码,给出了矩阵的操作。比较好用。-in other websites to find the matrix class library source code, is a matrix operation. Better quality.
DB05
- 矩阵运算的算法 用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
CMatrixForCpp
- 一个以double类型为基类型的矩阵类,实现了矩阵的加、减、乘、转置、求逆等基本操作。VC++程序。-a type of double-types of matrices, the matrix to achieve the increase, subtraction, multiplication, transpose, basic inverse operation. VC procedures.
matrxicalulation
- 采用VC开发的矩阵计算类,里面有许多计算功能可以直接调用或修改使用-development of the VC using matrix calculation category, which has many functions can be calculated directly or modify the use of call
DigitRec
- 基于神经网络的文字识别系统 本目录主要包括:文档和两个源代 其中源代码是识别程序的,另一个是矩阵类库的。已经保存了训练好的网络权值,所以第一次使用识别程序时,可以直接运行Release目录下的可执行文件,然后对图片目录中的测试图片进行读入、识别。当然也可以自行用训练样本训练网络,不过要注意训练样本的选择,否则可能识别率很低。训练样本选择的原则是,尽可能的有代表性,在训练时间不至于太长的情况下训练样本数目尽量多。
Chap10
- GDI+图形程序设计第十章源码,主要讲述坐标系统,变形,Maxtrix类应用及颜色矩阵.
verylong
- 大整数类,具有一般整数的几乎所有运算,具体包括:四则运算,输入输出,求模幂,乘法,矩阵求模幂,重载了所有int类型的运算符,int,long 等数据的兼容。使用方法与int,long等类型完全一致。
FCM的一种实现方法
- 请运行程序,并在程序所在文件夹下面创建文本文件:datain.txt和paramOut.txt,文件的详细说明见下面。程序的运行没有可视的界面,运行完毕之后会在该文件夹下面产生center.txt和matrix.txt两个文件,其中center.txt为聚类的中心,matrix.txt为隶属度矩阵。在运行本程序之前,先参考一下FCM聚类算法介绍.doc
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
searchupper
- 模糊聚类分析中在搜索矩阵的判定指标,指标上限的求解。-Fuzzy clustering analysis in the search matrix, the indicator cap solution.
4-1Jacbi
- 对于阶数不高的方程组,直接法非常有效,对于阶数高,而系数矩阵稀疏的线性方程组却存在着困难,在这类矩阵中,非零元素较少,若用直接法求解,就要存贮大量零元素。为减少运算量、节约内存,使用迭代法更有利。-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
SPARSE_CODE_DEMO
- 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
Matrix
- 矩阵类 实现矩阵的初等运算 包括加减乘除 求逆 转置-matrix
squat
- 执行一个简单的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
MatrixExample
- 矩阵类中各种方法的应用示例,加减乘除等各种功能,经验证通过,大家放心使用-Matrices of various methods of sample application, addition, subtraction, and other features, proven through, rest assured to use
matrix
- 定义矩阵类的构造函数及实现; 求矩阵元素最大值; 求矩阵元素最小值; 析构造函数;-Define matrix type of structure function and realization For maximum matrix element For matrix element minimum Analysis structure functions
juzhen
- 实现一个矩阵类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
juzhenlei
- 实现一个矩阵类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