代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.java
package shared;
import java.lang.*;
/** The Matrix class contains functions useful for manipulation of double arrays
* in MLJ.
* @author James Louis Java Implemtation.
*/
public class Matri
matrix.h
/////////////////////////////////////////////////////////////////////////////
// Matrix.h :
// Interface of the class CMatrix
// Author : freeia
// Modified Date : 3/11/2003
// E-mail : freeia@
matrix.cpp
/////////////////////////////////////////////////////////////////////////////
// Matrix.cpp : Implementation of the class Matrix
//
/////////////////////////////////////////////////////////////////
matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
matrix.java
public class Matrix{
private int h;//成员变量,矩阵行数
private int w;//成员变量,矩阵列数
private int[][] matrix;
public Matrix(int h,int w){//构造函数,h为行数,w为列数
if(!(h > 0 && w > 0))
throw new ArrayIn
matrix.java
public class Matrix{
private int h;//成员变量,矩阵行数
private int w;//成员变量,矩阵列数
private int[][] matrix;
public Matrix(int h,int w){//构造函数,h为行数,w为列数
if(!(h > 0 && w > 0))
throw new ArrayIn
matrix.h
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
**
matrix.h
//
// File = matrix.h
//
#ifndef _MATRIX_H_
#define _MATRIX_H_
class Matrix
{
public:
Matrix( ){};
virtual double* GetCol(int col_indx)=0;
protected:
int Num_Rows;
int Num