代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/107829/6333257
h matrix.h
//////////////////////////////////////////////////////////////////////
// Matrix.h
//
// 操作矩阵的类 CMatrix 的声明接口
//
// 周长发编制, 2002/8
////////////////////////////////////////////////////////////////
www.eeworm.com/read/107829/6333272
cpp matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
www.eeworm.com/read/493889/6384148
exe matrix.exe
www.eeworm.com/read/493889/6384152
map matrix.map
Start Stop Length Name Class
00000H 0506FH 05070H _TEXT CODE
05070H 05131H 000C2H MATRIX_TEXT CODE
05140H 05707H 005C8H E87_PROG CODE
05710H
www.eeworm.com/read/493889/6384160
obj matrix.obj
www.eeworm.com/read/493368/6401575
fnt matrix.fnt
www.eeworm.com/read/492754/6408510
c matrix.c
/* Note:Your choice is C IDE */
#include "stdio.h"
#include
#include
#define M1 100
#define M2 100
typedef struct{
int row;
int col;
float d[M1][M2];
}matrix;
void
www.eeworm.com/read/491938/6428722