代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/389059/8550883

h matrix2d.h

// Matrix2D.h: interface for the CMatrix2D class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_MATRIX2D_H__861EEFD7_9B24_11D5_B119_5254AB32C4D0__INCL
www.eeworm.com/read/432932/8562453

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); % 输出结果
www.eeworm.com/read/432932/8562467

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/432932/8562573

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/432932/8562611

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/432932/8562640

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/432932/8562645

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/432640/8585115

h matrix_market_stream.h

// -*- c++ -*- // // Copyright 1997, 1998, 1999 University of Notre Dame. // Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee // // This file is part of the Matrix Template Library // // You sh
www.eeworm.com/read/431776/8655010

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