Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - matrix c
Search - matrix c - List
This matrix C++ template class library is for performing common matrix operations in your C++ program like any other built-in data types. To install the package, just copy MATRIX.H file into the INCLUDE directory of your compiler and include this header file in your program source file
Update : 2008-10-13 Size : 39.07kb Publisher : 秦子翼

MISRA C Compliance Matrix
Update : 2025-02-19 Size : 227kb Publisher : 林金明

DL : 1
用分治法解矩阵乘法(C++实现)-with the partition method for matrix multiplication (C achieved)
Update : 2025-02-19 Size : 1kb Publisher : 胡凯

一篇介绍矩阵运算的文章,包括了主要的代码,word文件。-introduced a matrix calculation of the article, including the main code word document.
Update : 2025-02-19 Size : 6kb Publisher : 李宏仲

DL : 0
矩阵求逆,经典算法,全主元高斯约当法,经典源码,用途广泛-matrix inversion, classic algorithms, the main yuan Gaussian all about when France, classic source, a wide range of uses
Update : 2025-02-19 Size : 165kb Publisher : 李保磊

This matrix C++ template class library is for performing common matrix operations in your C++ program like any other built-in data types. To install the package, just copy MATRIX.H file into the INCLUDE directory of your compiler and include this header file in your program source file
Update : 2025-02-19 Size : 39kb Publisher :

AT90S8515与点阵液晶模块的C语言编程实例源程序-AT90S8515 dot matrix LCD module with the C programming language source code examples
Update : 2025-02-19 Size : 7kb Publisher : 刘杰

C++语言的复数与矩阵运算库,编写工程类软件必备。包括矩阵乘、加、数乘、逆等-C language in the plural and matrix operations for the preparation of engineering software required. Including matrix multiplication, Canada, multiply, the inverse
Update : 2025-02-19 Size : 9kb Publisher : 杨文海

完整的矩阵类,实现的功能如下: 方阵、拷贝构造、初始化,分配矩阵数据的内存,并全部置0、将方阵初始化为方阵、设置矩阵个元素的值、得到知道元素的值、获取矩阵的列数、获取矩阵的行数、获取矩阵的数据、获取指定行的向量、获取指定列的向量、重载运算符 = 、重载运算符 ==、重载运算符 !=、重载运算符 +、重载运算符 - 重载运算符 数乘*、重载运算符 矩阵相乘* 矩阵转置。-integrity of the matrix type, function as follows : Lineup, copy structure, initialization, distribution matrix of data memory, All the home 0 to initialize arrays of arrays installed matrix elements of value, be aware of the value elements, Access Matrix number, access to the Matrix a few, access to the data matrix, the designated access vector, The designated access vector, heavy Operators =, operator == heavy, heavy load Operators! =, heavy Operators, Heavy Operators- Heavy Operators multiply*, heavy Operators matrix multiplication* matrix transpose.
Update : 2025-02-19 Size : 3kb Publisher : dingdong

1. 创建一个十字矩阵 2. 进行十字矩阵的相加 3. 进行十字矩阵的相乘 4. 进行十字矩阵的转置操作 -1. To create a cross matrix 2. For the sum of cross matrix 3. To carry out cross matrix multiply 4. To carry out cross matrix transpose operation
Update : 2025-02-19 Size : 7kb Publisher : kobe

LED点阵的单片机程序包括了PROTEUS仿真-LED dot-matrix program of single-chip microcomputer including PROTEUS simulation
Update : 2025-02-19 Size : 64kb Publisher : 黄晓东

DL : 0
利用VC++开发的矩阵类库,包含矩阵运算的常用算法!-Use VC++ Developed matrix libraries, including the commonly used algorithm for computing matrix!
Update : 2025-02-19 Size : 15kb Publisher : 梁子旭

C语言课程设计---矩阵运算,用 TurboC 在图形模式下开发,如果不能运行请改下 initgraph()函数-C language curriculum design--- matrix calculation, using TurboC development in graphics mode, if it can not run, please change under initgraph () function
Update : 2025-02-19 Size : 47kb Publisher : gao745

DL : 0
一些矩阵运算的函数,包括两个矩阵相加,两个矩阵相减,两个矩阵相乘,矩阵复制,矩阵求逆的全选主员高斯-约当法,矩阵的三角分解(LU分解),求Hessenberg矩阵全部特征根的QR法,约化一般实矩阵为Hessenberg矩阵的初等相似变换-A function of a number of matrix operations, including the sum of two matrices, subtract two matrices, the two matrices, matrix duplicate, matrix inversion Select All the main members of the Gaussian- about when the law, the triangular matrix decomposition (LU decomposition ), seeking Hessenberg eigenvalue matrix of all the QR method, some of the general real matrix to Hessenberg Matrix elementary similarity transformation
Update : 2025-02-19 Size : 4kb Publisher : chen changqing

DL : 0
C#实现的矩阵运算源程序,其中所有的矩阵运算采用操作符重载技术,实现了矩阵求和,差,积,转置,逆等基本运算。-C# source code implementation of matrix operations, one of all the matrix calculation using operator overloading techniques, implementation of the matrix sum, difference, product, transpose, inverse and other basic computing.
Update : 2025-02-19 Size : 1kb Publisher : wangyong

avr 8x8 dot matrix source code
Update : 2025-02-19 Size : 2kb Publisher : balraj

gl-matrix.c: C Matrix library for OpenGL apps. A port of the gl-matrix JavaScript library.
Update : 2025-02-19 Size : 13kb Publisher : qiaoben

DL : 0
矩阵乘法 给定两个矩阵 A 和 B,其中 A 是具有 M 行、K 列的矩阵, B 为 K 行、N 列的矩阵, A 和 B 的矩阵积为矩阵 C, C 为 M 行、N 列。矩阵 C 中第 i 行、第 j 列的元素 Cij 就是矩阵 A 第 i 行每个元素和矩阵 B 第 j 列每个元素乘积的和,即 要求:每个 Ci j 的计算用一个独立的工作线程,因此它将会涉及生成 M×N 个工作线程。主 线程(或称为父线程)将初始化矩阵 A 和 B,并分配足够的内存给矩阵 C,它将容纳矩阵 A 和 B 的积。这些矩阵将声明为全局数据,以使每个工作线程都能访问矩阵 A、B 和 C。(Matrix multiplication Given two matrices A and B, where A is a matrix with M rows, K columns, B is K rows, N columns are matrices, A, and The matrix product of B is matrix C, C is M row, and N column. The element J in column I and column C in matrix Cij is the matrix A Line I, the sum of the products of each element and the matrix B, column J, i.e. Requirements: each Ci J is computed with an independent worker thread, so it will involve generating M * N worker threads. main The thread (or parent thread) will initialize the matrix A and B, and enough memory allocated to the C matrix, it will accommodate matrix A Product of B. These matrices will be declared global data so that each worker thread can access matrices A, B, and C.)
Update : 2025-02-19 Size : 1kb Publisher : leser

DL : 0
Matrix calculation using c#
Update : 2025-02-19 Size : 1009kb Publisher : LQSWPU

Matrix C for PIC 16F877
Update : 2025-02-19 Size : 110kb Publisher : hustdev
« 12 3 4 5 6 7 8 9 10 ... 50 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.