代码搜索:Matrix

找到约 10,000 项符合「Matrix」的源代码

代码结果 10,000
www.eeworm.com/read/128324/14304973

h matrix.h

#define size 50 #define delta 0.000001 #define huge 700 typedef double Matrix[50][50]; typedef double Vector[50]; #include "MMmul.c" #include "MVmul.c" #include "MNmul.c" #include "MMadd.
www.eeworm.com/read/128121/14314729

h matrix.h

////////////////////////////////////////////////////////////////////// // Matrix.h // // 操作矩阵的类 CMatrix 的声明接口 // // 周长发编制, 2002/8 ////////////////////////////////////////////////////////////////
www.eeworm.com/read/128121/14314761

cpp matrix.cpp

////////////////////////////////////////////////////////////////////// // Matrix.cpp // // 操作矩阵的类 CMatrix 的实现文件 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////
www.eeworm.com/read/128084/14317229

pas matrix.pas

unit Matrix; interface // Transpose a Variant matrix. // Transpose1 uses a direct, readable, maintainable approach. // Transpose2 accesses the Variant array data directly, which is // much fa
www.eeworm.com/read/229527/14332580

h matrix.h

//////////////////////////////// // Matrix TCL Lite v1.13 // Copyright (c) 1997-2002 Techsoft Pvt. Ltd. (See License.Txt file.) // // Matrix.h: Matrix C++ template class include file // Web: htt
www.eeworm.com/read/229196/14349458

h matrix.h

/*** ** libface - Library of face recognition and supporting algorithms Copyright (c) 2003 Stefan Farthofer This file is part of libface, which is free software; you can
www.eeworm.com/read/229196/14349501

c matrix.c

/*** ** libface - Library of face recognition and supporting algorithms Copyright (c) 2003 Stefan Farthofer This file is part of libface, which is free software; you can
www.eeworm.com/read/127249/14365833

html matrix.html

matrix
www.eeworm.com/read/127235/14367029

h matrix.h

#ifndef _MATRIX_H #define _MATRIX_H #include "defines.h" namespace annie { /** A class for 2-dimensional matrices. * This probably isn't the most efficient way to do matrix operations,
www.eeworm.com/read/127235/14367110

cpp matrix.cpp

#include "../include/Matrix.h" #include "../include/Exception.h" #include using namespace std; namespace annie { Matrix::Matrix(int m,int n) { _m = m; _n = n; _M = NULL;