代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/452642/7436664

h my_matrix.h

#ifndef GUARD_MY_MATRIX #define GUARD_MY_MATRIX #include #include class matrix { friend std::istream& operator>>(std::istream&,matrix&); friend std::ostream& operator
www.eeworm.com/read/452557/7437159

cpp matrix_serialization.cpp

#include "stdafx.h" #include "Matrix_Serialization.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif /////////////////////////////////////
www.eeworm.com/read/452557/7437160

h matrix_serialization.h

// Matrix.h: interface for the CMatrix class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_MATRIX_H__D58D0A47_68B4_11D6_AD90_00B0D0652E95__INCLUDED_)
www.eeworm.com/read/452266/7443631

m z_matrix.m

function Z = Z_matrix(n,k)%随机产生Z Z = zeros(n,k); for i=1:n Z(i,round(2*rand+1)) =1; end
www.eeworm.com/read/452266/7443640

m xie_matrix.m

function xie = xie_matrix(Z,X,U,m,n,k) temp1 = zeros(m,m); temp2 = 0; for j=1:k for i=1:n temp1 = temp1 + Z(i,j).*(X(i,:)-U(j,:))'*(X(i,:)-U(j,:)); temp2 = temp2 + Z(i,j);
www.eeworm.com/read/452265/7443643

m m_matrix.m

function Z = M_matrix(n,k)%随机产生Z Z = zeros(n,k); for i=1:n Z(i,round(2*rand+1)) =1; end
www.eeworm.com/read/452265/7443647

asv m_matrix.asv

function Z = M_matrix(k,m)%随机产生Z Z = zeros(k,m); for i=1:n Z(i,round(2*rand+1)) =1; end
www.eeworm.com/read/451955/7452978

m matrix1.m

function [st,t]=matrix1(machine_total,job_total,pop_size,T,init) for r=1:pop_size for i=1:machine_total; for j=1:job_total; if(i==1 && j==1) t(i,j,r)=T(1,init(r,j));
www.eeworm.com/read/451487/7462844

m form_matrix.m

function channel_est=form_matrix(SimulationParameters) global SimulationConstants; N=SimulationParameters.N; M=SimulationParameters.M; if M==1 & N==2 load cir11; load cir12; C
www.eeworm.com/read/451442/7463746

cpp matrix_tool.cpp

// This file contains some useful calculate function for matrix. // Programmer: Unknown some senior students. #include "Common.h" //the Multiply algorithm of two Matrix void ComMatrix_Mul(IN c