代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/148799/6966366
h matrix.h
//矩阵类声明:
//
//矩阵类的目的是为减化程序设计中文本数据的输入和输出,增加二维
//数组对一维指针、和二维指针的支持,并提供基本的矩阵运算功能。
//王仁铭 98.10月
class ifstream;
class ofstream;
class CMatrix
{
public:
int m_nCol;
int m_nRow;
double**
www.eeworm.com/read/148799/6966368
cpp matrix.cpp
#include "stdlib.h"
#include "math.h"
#include "matrix.h"
#include "fstream.h"
int brinv(double*,int);
CMatrix::CMatrix()
{
m_nRow=0;
m_nCol=0;
m_pData=0;
}
CMatrix::~CMatrix()
www.eeworm.com/read/229524/6969101
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/468658/6986222
class matrix.class
www.eeworm.com/read/467951/6997219
h matrix.h
#ifndef __MATRIX_H__
#define __MATRIX_H__
#include
typedef double T;
class Matrix
{
//private:
T** element;
int rows;
int cols;
void alloc(void);
void release(void);
www.eeworm.com/read/467951/6997245
cpp matrix.cpp
#include "matrix.h"
#include
#include
#include
#include
#define AS_ZERO 0.0001
Matrix::Matrix(int r, int c)
{
rows = r;
cols = c;
alloc()
www.eeworm.com/read/467951/6997284
obj matrix.obj
www.eeworm.com/read/465354/7053656
java matrix.java
import java.awt.image.BufferedImage;
import javax.swing.JPanel;
import javax.swing.JButton;
import javax.swing.ImageIcon;
public class Matrix
{
private JButton [][] button;
private JPanel
www.eeworm.com/read/465437/7054996
h matrix.h
// Matrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__D58D0A47_68B4_11D6_AD90_00B0D0652E95__INCLUDED_)