代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/459616/7270194
h matrix1.h
#include "xcept.h"
#include "vector.h"
template
class Matrix {
public:
Matrix(int r = 0, int c = 0);
Matrix(const Matrix& m); // copy constructor
~Matrix() {delete [] row;}
T&
www.eeworm.com/read/459616/7270408
h matrix2.h
#include "xcept.h"
template
class Matrix {
public:
Matrix(int r = 0, int c = 0);
Matrix(const Matrix& m); //copy constructor
~Matrix() {delete [] element;}
T& operator()(int i
www.eeworm.com/read/459453/7275224
cu cuda_matrix.cu
/*
今天CUDA技术群里meteor兄提了个问题如下
引用
x x x x y y y y
x x x x y y y y
x x x x y y y y
x x x x y y y y
z z z z a a a a
z z z z a a a a
z z z z a
www.eeworm.com/read/456193/7354960
bmp main_matrix.bmp
www.eeworm.com/read/455737/7367358
txt matrix_review.txt
MATRIX and LINEAR ALGEBRA Package For EXCEL
History review
MATRIX.XLA - Ver. 2.3.2 - March 2007
----------------------------------------------------------------------------------
Only minor c
www.eeworm.com/read/455033/7378524
edp ._sparse-matrix.edp
www.eeworm.com/read/455033/7378577
edp sparse-matrix.edp
// sparse matrix test ---
// example of the new matrix feature in version 1.40
// -------------------------------------------------
mesh TH = square(3,4);
mesh th = square(2,3);
mesh Th = square(
www.eeworm.com/read/453831/7407762
v matrix_op.v
module matrix_op( clk,reset,bit_in,bit_in_en, media_in,media_in_en,
coder_first,
bit_out,bit_out_en, first_out,
data_out);
input clk,reset;
input bit_i
www.eeworm.com/read/452642/7436657
cpp my_matrix.cpp
#include
#include
#include
#include
#include "my_matrix.h"
using namespace std;
typedef vector::size_type row;
typedef vector
www.eeworm.com/read/452642/7436659