代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/431225/8694583

txt matrix computing.txt

//定义,初始数据输入,构成矩阵 #define maxsize 1000 #define ERROR 0 #define maxrc 100 #include #include #include typedef struct { int i,j; int v; }node,*pnode; typedef struct
www.eeworm.com/read/431224/8696799

bmp main_matrix.bmp

www.eeworm.com/read/387193/8700184

dox doxygen_matrix.dox

/** \mainpage The Zenautics Matrix Project \htmlonly Sourceforge Project Page
www.eeworm.com/read/386970/8715038

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/386970/8715067

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/386625/8734472

asv get_matrix.asv

% GET_MATRIX Generate a discrete linear opererator % % [A,N] = GET_MATRIX(NX,NY) generates the matrix A of order N for % the problem defined by the global flag "problem_flag" and global
www.eeworm.com/read/386625/8734584

m get_matrix.m

% GET_MATRIX Generate a discrete linear opererator % % [A,N] = GET_MATRIX(NX,NY) generates the matrix A of order N for % the problem defined by the global flag "problem_flag" and global
www.eeworm.com/read/386279/8758375

m coefficient_matrix.m

function [A,b]=coefficient_matrix(str) % File name:coefficient_matrix.m % Author:Yan Anxin % ID number:081810 % Date:finished on 2008.11.15 % Description: % Here defines a fun
www.eeworm.com/read/430127/8764983

m kpca_matrix.m

function psi = kpca_matrix(sv,x,kernel); %KPCA_MATRIX calculates the kernel matrix. % % usage % psi = kpca_matrix(sv,x,kernel); % % input % sv list of column vectors from the inpu
www.eeworm.com/read/386022/8771199

txt revers matrix.txt

#include #include #include void main() { int n; printf("请输入你所求解的逆矩阵的阶数:n="); scanf("%d",&n); float choose_the_main(float **a,float *b,int k,int n); void