代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/363273/6362546

html matrix2chess.html

www.eeworm.com/read/363273/6362549

m matrix2chess.m

function n = matrix2chess(pos) % matrix2chess matrix to chess notation % A position is given in matrix notation and the chess notation is % required. % % Inputs: % * pos ... position in matrix n
www.eeworm.com/read/492081/6423984

class matrix3d.class

www.eeworm.com/read/491938/6428718

uv2 matrix_key.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,2, 0x0 File 1,1,
www.eeworm.com/read/491938/6428729

m51 matrix_key.m51

BL51 BANKED LINKER/LOCATER V5.03 08/24/2007 09:30:04 PAGE 1 BL51 BANKED LINKER/LOCATER V5.03, INVOKED BY: D:\KEIL\C51\BIN\BL51.EXE STARTU
www.eeworm.com/read/491039/6439483

m form_ref_matrix.m

function p=form_ref_matrix(P) if P==1 a=[-1 1]; b=a; elseif P==2 bits_in=[1 0 1 1 0 1 0 0]; full_len=length(bits_in); % Angle [pi/4 3*pi/4 -3*pi/4 -pi/4] corresponds to
www.eeworm.com/read/489529/6472769

m zig2matrix.m

function Matrix = Zig2Matrix(v_zig) %将zigzag排列恢复成矩阵Matrix zigLen = length(v_zig); zigWidth = sqrt(zigLen); zigHeight = sqrt(zigLen); %计算矩阵Matrix的宽度和高度 i=1; j=1; h=2; Matr
www.eeworm.com/read/487628/6506794

cfg q_matrix_def.cfg

# This is the configuration file for initialising the Q matrix. # Altogether 6 matrix for 4x4 block and 2 matrix for 8x8 block # The values range from 1 to 255 # If first value of matrix is equal t
www.eeworm.com/read/487628/6506805

cfg q_matrix2.cfg

# This is the configuration file for initialising the Q matrix. # Altogether 6 matrix for 4x4 block and 2 matrix for 8x8 block # The values range from 1 to 255 # If first value of matrix is equal t
www.eeworm.com/read/484889/6575890

asv matrix_more_equations.asv

% matrix_more_equations.m % 求解非奇异线性方程组的解 A=[1 2 3;4 5 6;7 8 0;2 5 8]; y=[366 804 351 514]'; % 方法一:左除法(结果中0最多) x_1=A\y; % 方法二:伪逆矩阵法(范数最小) x_2=pinv(A)*y; % 方法三:lscov协方差法 x_3=lscov(A,y); % 输出结果