代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/344464/11877501

mdl matrix_signals.mdl

Model { Name "matrix_signals" Version 4.00 SampleTimeColors off LibraryLinkDisplay "none" WideLines off ShowLineDimensions on ShowPortDataTypes off RecordCove
www.eeworm.com/read/257459/11925794

m matrix_operation.m

clear; %a fast way to generate a matrix by multiplying a column vector by a row %vector X = 1:5; M = X'*X; M %generate a complex signal t = 0:1e-3:10; z = exp(-2*i*pi*t); %x and y are the real and i
www.eeworm.com/read/342759/12000043

h matrix5.h

#ifndef MATRIX5_H #define MATRIX5_H #include #include #include using namespace std; /** Matrix exception class for indexing error */ class MatrixInde
www.eeworm.com/read/342759/12000047

cpp matrix5.cpp

#include #include #include "matrix5.h" string MatrixIndexException::format_message(int n) { ostringstream outstr; outstr
www.eeworm.com/read/342759/12001532

cpp matrix3.cpp

#include #include #include "matrix3.h" string MatrixIndexException::format_message(int n) { ostringstream outstr; outstr
www.eeworm.com/read/342759/12001540

h matrix3.h

#ifndef MATRIX3_H #define MATRIX3_H #include #include using namespace std; /** Matrix exception class for indexing error */ class MatrixIndexException : public ou
www.eeworm.com/read/342759/12002150

h matrix4.h

#ifndef MATRIX4_H #define MATRIX4_H #include #include namespace BigCPlusPlus_Matrix { /** This class describes a matrix with arbitrary rows and columns */ class
www.eeworm.com/read/342759/12002154

cpp matrix4.cpp

using namespace std; #include #include #include "matrix4.h" namespace BigCPlusPlus_Matrix { string Matrix::IndexException::format_message(int n) { ostringstream o
www.eeworm.com/read/342759/12002846

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