代码搜索:LED Matrix

找到约 10,000 项符合「LED Matrix」的源代码

代码结果 10,000
www.eeworm.com/read/292933/8322983

h btl_matrix.h

// // Matrix.h // // This file contains declarations for the matrix class. // This code is part of the Bioinformatics Template Library (BTL). // // Copyright (C) 1997-1998 Birkbeck College, Malet Stre
www.eeworm.com/read/292452/8353485

m h_matrix.m

% H matrix % function H=H_matrix fid=fopen('matrix.txt','r'); Hmatrix=fscanf(fid,'%g',[6,504]); status=fclose(fid); Hmatrix=Hmatrix'; H=zeros(504,1008); for i=1:504 for j=1:6 H(
www.eeworm.com/read/173047/9677566

m rotation_matrix.m

function T=rotation_matrix(alpha,beta,gamma); % This function creates a rotation matrix for rotating objects around the % three axes. % % alpha .. rotation around the x-axis % beta .. rotation
www.eeworm.com/read/368685/9681441

h q_matrix.h

/*! *************************************************************************** * \file * q_matrix.h * * \brief * Headerfile for q_matrix array * * \date * 07. Apr 2004
www.eeworm.com/read/368685/9681602

c q_matrix.c

/*! ************************************************************************************* * \file q_matrix.c * * \brief * read q_matrix parameters from input file: q_matrix.cfg * **
www.eeworm.com/read/368337/9700987

h gsl_matrix.h

#ifndef __GSL_MATRIX_H__ #define __GSL_MATRIX_H__ #include #include #include #include
www.eeworm.com/read/172512/9703945

cpp reverse_matrix.cpp

double * MatrixInver(double A[],int m,int n) /*嬮??抲*/ { int i,j; double *B=NULL; B=(double *)malloc(m*n*sizeof(double)); for(i=0;i
www.eeworm.com/read/172493/9705180

h matrix2.h

#ifndef MATRIX2_H #define MATRIX2_H #include #include using namespace std; /** This class describes a row in a matrix. */ class Matrix; class MatrixRow { publi
www.eeworm.com/read/172493/9705185

cpp matrix2.cpp

#include #include "matrix2.h" Matrix::Matrix(int r, int c) : rows(r), columns(c), elements(new double[rows * columns]) { for (int i = 0; i < rows * columns; i++) elements[i] =
www.eeworm.com/read/172493/9705225

h matrix5.h

#ifndef MATRIX5_H #define MATRIX5_H #include #include #include using namespace std; /** Matrix exception class for indexing error. */ class MatrixInd