代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5519476
exp matrix1.exp
# Copyright (C) 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# t
www.eeworm.com/read/344585/3207827
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/344585/3207860
m kernel_matrix.m
function omega = kernel_matrixKLR(Xtrain,kernel_type, kernel_pars,Xt)
% Construct the positive (semi-) definite and symmetric kernel matrix
%
% >> Omega = kernel_matrixKLR(X, kernel_fct, sig2)
%
% T
www.eeworm.com/read/340665/3273422
c matrix1.c
/* Matrix operations */
#define BOUND 100
int a[BOUND][BOUND],b[BOUND][BOUND],c[BOUND][BOUND];
main()
{
int i,j,k;
for (i=0; i
www.eeworm.com/read/340665/3273468
exp matrix1.exp
# Copyright (C) 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# t
www.eeworm.com/read/338901/3312265
h nebu_matrix.h
#ifndef NEBU_MATRIX_H
#define NEBU_MATRIX_H
#include "nebu_vector.h"
typedef struct {
float m[16]; // column order
} matrix;
vec4* vec4Transform(vec4* pOut, const vec4* pV, const matrix *pM);
flo