代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/106974/15615730
cpp matrix.cpp
#define a2 100
#define a4 10000
#define B 3141
# include "inout.cpp"
int _ran;
int Mult(int p, int q)
{
int p1,p0,q1,q0;
p1 = p / a2;
p0 = p % a2;
q1 = q / a2;
q0 = q % a2;
return
www.eeworm.com/read/106881/15618653
h matrix.h
/////////////////////////////////////////////////////////////////////////////
// Matrix.h :
// Interface of the class CMatrix
// Author : freeia
// Modified Date : 3/11/2003
// E-mail : freeia@
www.eeworm.com/read/106881/15618687
h matrix.h
/////////////////////////////////////////////////////////////////////////////
// Matrix.h :
// Interface of the class CMatrix
// Author : freeia
// Modified Date : 3/11/2003
// E-mail : freeia@
www.eeworm.com/read/106881/15618700
cpp matrix.cpp
/////////////////////////////////////////////////////////////////////////////
// Matrix.cpp : Implementation of the class Matrix
//
/////////////////////////////////////////////////////////////////
www.eeworm.com/read/106881/15618707
h matrix.h
/////////////////////////////////////////////////////////////////////////////
// Matrix.h :
// Interface of the class CMatrix
// Author : freeia
// Modified Date : 3/11/2003
// E-mail : freeia@
www.eeworm.com/read/106310/15640559
cpp matrix.cpp
// CMATRIX.cpp: implementation of the CMATRIX class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MATRIX.h"
#include "math.h"
#ifdef
www.eeworm.com/read/106310/15640560
h matrix.h
// MATRIX.h: interface for the CMATRIX class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__5C15DE20_DF21_4D01_AFA2_53F52D2E6845__INCLUDED_)
www.eeworm.com/read/104698/15684827
hpp matrix.hpp
//Header: Matrix.hpp
//Version: 1.0
//Language: Borland C++ 3.1
//Environ: Any
//Date: 10/1995~3/1996
//Purpose: Provide a base class for matrix
#ifndef __MATRIX__HPP
#define __MATRIX__HPP
www.eeworm.com/read/104698/15684828
cpp matrix.cpp
//Header: Matrix.hpp
//Version: 1.0
//Language: Borland C++ 3.1
//Environ: Any
//Date: 10/1995~3/1996
//Purpose: Provide a base class for matrix
#include "matr
www.eeworm.com/read/104625/15688577
bak matrix.bak
class matrix{
int **mat1,**mat2,**mat3;
int r1,r2,r3,c1,c2,c3;
public :
matrix(){
r1=0;r2=0;
c1=0;c2=0;
}
void createMem(int,int,int,int,int,int);