代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/413253/11160975
h matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H
#include "complex.h"
enum Fill_Way{crs,row,col,all};
void printArray(int,Complex *);
class Matrix{ //仅为方阵!!
private:
int dimension;
int cross;
Complex **
www.eeworm.com/read/413253/11160984
cc matrix.cc
#include
#include
#include "matrix.h"
using namespace std;
void printArray(int i,Complex *array){
for(int j=0;j
www.eeworm.com/read/413253/11160988
o matrix.o
www.eeworm.com/read/413031/11169532
h matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H 1
class CMatrix
{
void Householder( float**, int, float** );
int reflection( float*, int, int, float* );
void updateMat( float**, float*, int, int );
www.eeworm.com/read/413031/11169547
cpp matrix.cpp
#include
#include
#include "Matrix.h"
#define TZERO 1E-6
CMatrix::CMatrix()
{
}
CMatrix::~CMatrix()
{
}
// Check the orthonormality and characteristic equation
www.eeworm.com/read/413021/11169996
h matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H 1
class CMatrix2
{
void Householder( float**, int, float** );
int reflection( float*, int, int, float* );
void updateMat( float**, float*, int, int );
www.eeworm.com/read/413021/11170008
cpp matrix.cpp
/* 矩阵操作 */
#include
#include
#include "Matrix.h"
#define TZERO 1E-6
CMatrix2::CMatrix2()
{
}
CMatrix2::~CMatrix2()
{
}
// Check the orthonormality and characteri
www.eeworm.com/read/412767/11185992
fnt matrix.fnt
www.eeworm.com/read/412508/11195143
gp matrix.gp
set terminal postscript eps
set size 2,2
set output "Matrix.ps"
set title "Matrix e'tornata"
set xlabel "X area"
set ylabel "Y area "
set zlabel "traffic"
#set xtics (100,200,300,400)
set ytics (100
www.eeworm.com/read/266537/11220127
c matrix.c
/* University of Ulm Programming Contest 1996
Problem G: Matrix Chain Multiplication
Implementation: Mark Dettinger */
#include
typedef struct {int mults; int rows; int cols;} triple