代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/405283/11466970
c 乘法矩阵.c
#include
void main()
{
int i,j;
int big[8][8];
for (i = 0;i < 8;i++) /*循环嵌套*/
for (j = 0;j < 8;j++)
big[i][j] = i * j; /* 乘法表 */
big[2][6] = 748;
www.eeworm.com/read/405283/11467064
c 矩阵转换.c
void trans(int *p,int n)
{
int i,j,temp;
int *pi,*pj;
for(i=0;i
www.eeworm.com/read/157762/11665877
cpp 稀疏矩阵.cpp
#include
using namespace std;
#define MAXSIZE 12500
#define OK 1
#define ERROR 0
typedef int status;
typedef int Elemtype;
typedef struct{
int i,j;
Elemtype e;
}Triple;
typedef
www.eeworm.com/read/345499/11811601
opt 矩阵键盘.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/345499/11811609
hex 矩阵键盘.hex
:03000000020222D7
:0C022200787FE4F6D8FD758116020269B1
:10031F003F065B4F666D7D077F6F777C395E797126
:06032F004000FEFDFBF79B
:1003070004080000000004120000000001100002B1
:070317000E0000020C0000C3
:0
www.eeworm.com/read/345499/11811612
dsn 移位矩阵.dsn
www.eeworm.com/read/345499/11811614
pwi 移位矩阵.pwi
www.eeworm.com/read/345499/11811618
plg 矩阵键盘.plg
礦ision3 Build Log
Project:
D:\暑假练习\移位——矩阵键盘\矩阵键盘.uv2
Project File Date: 07/19/2008
Output:
Build target 'Target 1'
compiling main.c...
MAIN.
www.eeworm.com/read/154896/11920693
cpp 矩阵连乘.cpp
#include
#include
#define max 10
void Matrix(int *p,int n,int m[max][max],int s[max][max])
{int i,j,k,r,t;
for ( i=1;i