代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/484889/6575893

asv matrix_fewer_equations.asv

% matrix_fewer_equations.m % 求解非奇异线性方程组的解 A=[1 4 7 2;2 5 8 5;3 6 0 8]; y=[366;804;351]; % 方法一:左除法(结果中0最多) x_1=A\y; % 方法二:伪逆矩阵法(范数最小) x_2=pinv(A)*y; % 方法三:QR分解法 [Q,] det_A=det(A) rank_A=rank
www.eeworm.com/read/484889/6575910

m matrix_non_singular.m

% matrix_non_singular.m % 求解非奇异线性方程组的解 A=[1 2 3;4 5 6;7 8 0]; y=[366;804;351]; % 方法一:判断A的条件数,A的秩以及增广矩阵【A y】的秩 rank(A) rank([A y]) cond(A) x_1=inv(A)*y; % 方法二:通过矩阵左除来求解线性方程组的解 x_2=A\y; % 输出结
www.eeworm.com/read/484889/6575917

m matrix_more_equations.m

% matrix_more_equations.m % 求解非奇异线性方程组的解 A=magic(8); A=A(:,1:5); y=260*ones(8,1); % 方法一:左除法(结果中0最多) x_1=A\y; % 方法二:伪逆矩阵法(范数最小) x_2=pinv(A)*y; % 方法三:lscov协方差法 x_3=lscov(A,y); % 输出结果 disp('左
www.eeworm.com/read/484889/6575922

asv matrix_non_singular.asv

% matrix_non_singular.m % 求解非奇异线性方程组的解 A=[1 2 3;4 5 6;7 8 0]; y=[366;804;351]; % 方法一:判断A的条件数,A的秩以及增广矩阵【A y】的秩 rank(A) rank([A y]) cond(A) x_1=inv(A)*y; % 方法二:通过矩阵左除来求解线性方程组的解 x_2=A\y; % 输出结
www.eeworm.com/read/484889/6575923

m matrix_fewer_equations.m

% matrix_fewer_equations.m % 求解非奇异线性方程组的解 A=[1 4 7 2;2 5 8 5;3 6 0 8]; y=[366;804;351]; % 方法一:左除法(结果中0最多) x_1=A\y; % 方法二:伪逆矩阵法(范数最小) x_2=pinv(A)*y; % 方法三:QR分解法 [Q,R]=qr(A); z=Q'*y; x_3=R\z;
www.eeworm.com/read/484525/6579176

bak button_matrix_opt.bak

### uVision2 Project, (C) Keil Software ### Do not modify ! cExt (*.c) aExt (*.s*; *.src; *.a*) oExt (*.obj) lExt (*.lib) tExt (*.txt; *.h; *.inc) pExt (*.plm) CppX (*.cpp) DaveTm {
www.eeworm.com/read/484525/6579185

m51 button_matrix.m51

BL51 BANKED LINKER/LOCATER V5.03 11/28/2006 01:12:14 PAGE 1 BL51 BANKED LINKER/LOCATER V5.03, INVOKED BY: C:\KEIL\C51\BIN\BL51.EXE Main.o
www.eeworm.com/read/484525/6579189

uv2 button_matrix.uv2

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

htm matrix3_cpp.htm

matrix3.cpp
www.eeworm.com/read/484606/6580700

htm matrix1_cpp.htm

matrix1.cpp