代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.inc
;----------------------------------------------------------
; 作者:陈文尧
; 文件:Matrix.inc
; 版本:1.04
; 创建日期:2001.08.01
;----------------------------------------------------------
FMATRIX struc
matrix.h
// Copyright (C) 2003 Ronan Collobert (collober@idiap.ch)
//
// This file is part of Torch 3.
//
// All rights reserved.
//
// Redistribution and use in source and binary forms,
matrix.c
#include
#include "global.h"
/////操作矩阵
void RangeValue()////行列式
{
int i,j,k,l,flag;
double tempt_matrix[ATTRIBUTENUM][ATTRIBUTENUM];
double tempt_value;
for(i=0;i
matrix.h
#ifndef _INC_MATRIX
#define _INC_MATRIX
typedef struct MatrixStruct
{
double **data;
int height, width;
} Matrix;
typedef struct uc_MatrixStruct
{
unsigned char **data;
int height,
matrix.cpp
#include "stdafx.h"
#include
#include
#include
#include
#include "matrix.h"
void nrerror(char *error_text)
{
fprintf(stderr,"Numerical Recipes run-tim
matrix.h
// Matrix1.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX1_H__35A217E3_A5E0_492C_B345_A1DE28E8658C__INCLUDED
matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
//////////////////////////////////////////////////////////////////////
#inc
matrix.java
package Jama;
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import java.text.FieldPosition;
import java.io.Prin