代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/138383/13238463

h dft_matrix.h

/* * ASTL - the Automaton Standard Template Library. * C++ generic components for Finite State Machine handling. * Copyright (C) 2000 Vincent Le Maout (vlemaout@lexiquest.fr). * * This libr
www.eeworm.com/read/324558/13258314

bak matrix.java.bak

public class Matrix{ private int h;//成员变量,矩阵行数 private int w;//成员变量,矩阵列数 private int[][] matrix; public Matrix(int h,int w){//构造函数,h为行数,w为列数 if(!(h > 0 && w > 0)) throw new ArrayIn
www.eeworm.com/read/324548/13258835

bak matrix.java.bak

public class Matrix{ private int h;//成员变量,矩阵行数 private int w;//成员变量,矩阵列数 private int[][] matrix; public Matrix(int h,int w){//构造函数,h为行数,w为列数 if(!(h > 0 && w > 0)) throw new ArrayIn
www.eeworm.com/read/138105/13260126

h matrix2.h

/************************************************************************** ** ** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved. ** ** Meschach Library ** **
www.eeworm.com/read/239554/13272683

h matrix_pf.h

#ifndef _MATRIX_PF_H_ #define _MATRIX_PF_H_ #include "vector_pf.h" //#include "rowvec_pf.h" class rowvec_pf; class colvec_pf; class matrix_pf { protected: struct mrep { rowvec
www.eeworm.com/read/324303/13273692

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/238843/13320880

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/238843/13321042

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/137213/13339973

m confusion_matrix.m

function CM = Confusion_matrix(train_predicts, train_targets) % solve the confusion matrix of classifiers % Inputs: % predicts - the predicting class by single classifiers % targets
www.eeworm.com/read/136916/13354344

js matrix_calculate.js

function Matrix(Row,Line) { this.Row = Row; this.Line = Line; this.Elem = new Array; for(var i = 0; i < Row;i++ ) { this.Elem[i] = new Array; for(var j = 0; j < Line; j++) {