代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.java
package com.croftsoft.core.math;
/*********************************************************************
*
* A mathematical matrix class.
*
* @version
* 199
matrix.java
package com.croftsoft.apps.insight;
import java.awt.Point;
public class Matrix {
//////////////////////////////////////////////////////////////////////
// Matrix.java
matrix.java
package neural.matrix;
public class Matrix {
double[][] m;
public Matrix(double[][] m) {
this.m = m;
}
public Matrix(Matrix matrix) {
matrix.h
/***********************************************************************
matrix.h - matrix operations
Copyright (C) 1991 Dean Rubine
This program is free software; you can redistribute it and/or mo
matrix.c
/***********************************************************************
matrix.c - simple matrix operations
Copyright (C) 1991 Dean Rubine
This program is free software; you can redistribute it an
matrix.h
// Matrix.h: interface for the CMatrix class.
#ifndef __CMATRIX_H__
#define __CMATRIX_H__
#include
using namespace std;
const long OTYPE_ITEM = 1;
const long OTYPE_HUMAN = 2;
cl
matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
#include "Matrix.h"
#include "Object.h"
#include "Item.h"
#include "Human.h"
CMatrix::CMatrix()
{
// 初始ID = 1
m_seq = 1;
}
CMatr
matrix.java
package numbercruncher.matrix;
import numbercruncher.mathutils.*;
/**
* The matrix class.
*/
public class Matrix {
/** number of rows */
protected int nRows;
/** number of columns
matrix.c
#include
#include
int
main (void)
{
int i, j;
gsl_matrix * m = gsl_matrix_alloc (10, 3);
for (i = 0; i < 10; i++)
for (j = 0; j < 3; j++)
gsl_matrix_s
matrix.h
// MATRIX.h: interface for the MATRIX class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(MATRIX_H__INCLUDED_)
#define MATRIX_H__INCLUDED_
#if _MSC_VER >= 1