代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
matrix.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Release--------------------
Command Lines
Creating command line "rc.exe /l 0x804 /f
matrix.cpp
// Matrix.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Matrix.h"
#include "MainFrm.h"
#include "MatrixDoc.h"
#include "MatrixView.h"
#ifdef _DEB
matrix.inc
;----------------------------------------------------------
; 作者:陈文尧
; 文件:Matrix.inc
; 版本:1.04
; 创建日期:2001.08.01
;----------------------------------------------------------
FMATRIX struc
matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
matrix.java
public class Matrix{
private MyVector values; //成员变量,矩阵元素
private int h; //成员变量,矩阵行数
private int w; //成员变量,矩阵列数
public Matrix(int h,int w){ //构造函数,h为行数,w为列数
if(!(h > 0 &&
matrix.java
public class Matrix{
private MyVector values;
private int h,w;
public Matrix(int h,int w){
if(!(h > 0 && w > 0))
throw new ArrayIndexOutOfBoundsException("h or w < " + 1);
values =