代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
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()
matrix.asp
Document Title
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
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);
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()
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
matrix.h
// Matrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__D58D0A47_68B4_11D6_AD90_00B0D0652E95__INCLUDED_)
matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
//
//
//
// Coding and Memory analysis by Aris
// Please do not remove this header
//
///////////////////////////////////////////////////////