搜索资源列表
jisuanqi
- 稀疏矩阵计算器,以带行逻辑链接信息的三元组表示稀疏矩阵,实现矩阵相加相减相乘的运算。-Sparse Matrix Calculator
matrix
- 实现一个稀疏矩阵运算器。以“带行逻辑链接信息”的三元组表作为稀疏矩阵的存储结构,实现两个矩阵相加、相减、相乘运算,运算结果要求以阵列形式输出。-The realization of a sparse matrix calculator. To line with the logic of the link information as the three groups, sparse matrix storage structure, the realization of two matri
xishujuzhen
- 以“带行逻辑链接信息”的三元组表作为稀疏矩阵的存储结构;实现两个矩阵相加、相减、相乘运算;运算结果以阵列形式输出。-Sparse matrix computation
SparseMatrixArithmeticUnit
- 现一个稀疏矩阵运算器。以“带行逻辑链接信息”的三元组表作为稀疏矩阵的存储结构;实现两个矩阵相加、相减、相乘运算;运算结果要求以阵列形式输出-Is a sparse matrix arithmetic unit. The " belt line of logical link information" triples table as sparse matrix storage structure to achieve two matrices are added togeth
xishujuzheng
- 稀疏矩阵的相加,输入两个稀疏矩阵,将两个矩阵中次数相等的项的系数相加存入另一个矩阵中-Sparse matrix add, enter the two sparse matrix, two matrix coefficient of frequency equal to the sum of the items into another matrix
SparseMatrixArithmeticUnit
- 稀疏矩阵是指那些多数元素为零的矩阵。利用“稀疏”特点进行存储和计算可以大大节省存储空间,提高计算效率。实现一个能进行稀疏矩阵基本运算的运算器。在一个矩阵中,可以用一个三元组〈row,column,value〉唯一地确定一个矩阵元素,因此,可以利用一个三元组数组(三元组表)来表示一个稀疏矩阵。此程序代码实现了两个稀疏矩阵相加、相减和相乘的运算。稀疏矩阵的输入形式采用三元组表示,而运算结果的矩阵则以阵列形式列输出。-Are those most sparse matrix element is ze
juzhen
- 用C++实现稀疏矩阵A和稀疏矩阵B的相加-Using C++, sparse matrix A and the sparse matrix B, add
5-3
- 输入并建立两个稀疏矩阵A和B的十字链表, 输出稀疏矩阵, 两完成两稀疏矩阵的加法运算,结果存放在稀疏矩阵A中, 要求相加结果为0的元素从结果稀疏矩阵的十字链表中删除, 输出A稀疏矩阵-Input and the establishment of two sparse matrices A and B, cross linked, the output matrix, the two completed the addition of two sparse matrix computation,
juzhenxiangjia
- 实现稀疏矩阵的相加,并将其结果存放在三元组表中-Add to achieve sparse matrix, and the results stored in the table triples
Sparse-matrix-computation
- 本演示程序中,以“带行逻辑的链接信息”的三元组顺序表表示稀疏矩阵,实现两个矩阵相加、相减和相乘的运算。稀疏矩阵的输入形式采用三元组表示,而运算结果的表示以阵列形式列出。首先应输入矩阵的行数和列数,并判断给出的两个矩阵的行和列对于所要求的运算是否相匹配。(矩阵的行数和列数均不超过20)-The demonstration program, the " OK logical link information" triples sequence table indicates spa
1
- (1)以“带行逻辑链接信息”的三元组顺序表表示稀疏矩阵。输入形式为采用三元组表示,即依次输入矩阵行数、列数、非零元个数及每个非零元的行数、列数、值。 (2)输出形式为矩阵。 (3)程序所能达到的功能为实现两个矩阵相加、相减、和相乘的运算。-(1) with the line-logical link information table shows the sequence of triples sparse matrix. Input form for the introduc
1
- 利用十字链表 来完成对稀疏矩阵的创建和实现相加运算-The use of cross-linked list to complete the sparse matrix creation and implementation of the addition operation
Djffonence
- 稀疏矩阵采用三元组表示,1求两个具有相同行列数的稀疏矩阵A和B的相加矩阵C,并输出C,2求出C的转置矩阵D,输出D()