代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/151030/12238634

h mes_matrix.h

// -*- c++ -*- /////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2001 Oh-Wook Kwon, all rights reserved. ohwook@yahoo.com // //
www.eeworm.com/read/151030/12238674

h matrix3.h

// -*- c++ -*- /////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2001 Oh-Wook Kwon, all rights reserved. ohwook@yahoo.com // //
www.eeworm.com/read/150749/12267165

m kernel_matrix.m

function omega = kernel_matrix(Xtrain,kernel_type, kernel_pars,Xt) % Construct the positive (semi-) definite and symmetric kernel matrix % % >> Omega = kernel_matrix(X, kernel_fct, sig2) % % This ma
www.eeworm.com/read/150749/12267301

m kernel_matrix.m

function omega = kernel_matrix(Xtrain,kernel_type, kernel_pars,Xt) % Construct the positive (semi-) definite and symmetric kernel matrix % % >> Omega = kernel_matrix(X, kernel_fct, sig2) % % This ma
www.eeworm.com/read/252296/12287258

c matrix_tools.c

#include #include #include #include #include #include #include "simulator.h" #include "Matrix_Tools.h" //*****************
www.eeworm.com/read/252296/12287265

h matrix_tools.h

#ifndef MATRIX_TOOLS_H #define MATRIX_TOOLS_H /* Use these for sending to matrix multiplication routines */ #define AA 0 /* A * A */ #define ATA 1 /* AT * A Where: AT =
www.eeworm.com/read/150256/12301801

m matrix1.m

m=[1 2 3 4;5 6 7 8;9 10 11 12] p=[1 1 1 1 2 2 2 2 3 3 3 3] a=[] b=zeros(2,3) c=ones(2,3) d=eye(2,3) e=eye(3,3)
www.eeworm.com/read/150256/12301828

m matrix2.m

a=[1 2 3;4 5 6;7 8 9] a1=a(2,:) a2=a(:,2) a3=a(:) a4=a(1:2,2:3) a5=a(2:-1:1,:) a6=a(:,3:-1:2) a7=a;a7(1:2,:)=[] a8=a;a8(:,1)=[] a9=[a a2] a10=[a;a1]
www.eeworm.com/read/150256/12301839

m matrix3.m

a=[1 2 3 4 5 6] b=[1 2 1 2 1 2] c1=a+a c2=a*b c=[2 7 3;3 9 4;1 5 3] c3=det(c) c4=inv(c) [v,d]=eig(c)