代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/135738/13905498
plg 矩阵乘法.plg
Build Log
--------------------Configuration: 矩阵乘法 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\jiaodj\L
www.eeworm.com/read/135738/13905500
dsw 矩阵乘法.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/135738/13905501
ncb 矩阵乘法.ncb
www.eeworm.com/read/135738/13905503
dsp 矩阵乘法.dsp
# Microsoft Developer Studio Project File - Name="矩阵乘法" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/135738/13905507
opt 矩阵乘法.opt
www.eeworm.com/read/134035/14011926
c 逆矩阵.c
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/
#include "stdio.h"
#include "conio.h"
/*js()函数用于计算行列式,通过递归算法实现*/
int js(s,n)
int s[][N],n;
{int z,j,k,r,total=0;
int b[N][N];/*b[N][N]用于存放,在矩阵s[
www.eeworm.com/read/133496/14038726
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/200797/15424790
txt 矩阵类.txt
#ifndef _MATRIX_H_
#define _MATRIX_H_
/*
File Name: Matrix.h
Lib Name: JGMath2D.lib
Description: For the 2D translation
Created Author:Bookworm_zju@zjuem.edu.cn
Created Data: 04/22/02
*
www.eeworm.com/read/111574/15509842
txt 矩阵运算.txt
// 稀疏矩阵.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
#include
#include
#define OVERFLOW -1
#
www.eeworm.com/read/111277/15515814
txt 逆矩阵.txt
Matrix& Matrix::getInverse()
{
if(len==0) throw Excp(BOp);
double* pm;
int row,col;
if((pm=new double [len*l