代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/240189/13231880
pro zern_dx_matrix.pro
; $Id: zern_dx_matrix.pro,v 1.1.1.1 2002/03/12 11:53:46 riccardi Exp $
;
; A. Riccardi, Dipartimento di Astronomia di Firenze (Italy).
; e-mail address: riccardi@arcetri.astro.it
; Please, send me
www.eeworm.com/read/136831/13359240
m matrix2vector.m
% =========== from matrix to vector ================
function v=matrix2vector(matrix)
v=[];
[x,y]=size(matrix);
for i=1:x
v=cat(2,v,matrix(i,:));
end
return;
% ============================
www.eeworm.com/read/322302/13383057
m rest_spm_matrix.m
function [A] = rest_spm_matrix(P)
% returns an affine transformation matrix
% FORMAT [A] = spm_matrix(P)
% P(1) - x translation
% P(2) - y translation
% P(3) - z translation
% P(4) - x rotation ab
www.eeworm.com/read/320986/13414579
c matrix2d.c
/*
EZW编解码器的数据操作
*/
#include "matrix2d.h"
#include
#include
/*
* Allocate memory for a two-dimensional RxC matrix.
* Returns NULL on failure.
*/
matrix_2d *mat
www.eeworm.com/read/320986/13414585
h matrix2d.h
//EZW编解码数据结构的定义:矩阵结构
#ifndef __MATRIX_2D_H__
#define __MATRIX_2D_H__
typedef int element_type;
#define min_element_type -32768
#define max_element_type 32767
typedef struct __matrix_2d
www.eeworm.com/read/314887/13557122
m form_ref_matrix.m
function p=form_ref_matrix(P)
if P==1
a=[-1 1];
b=a;
elseif P==2
bits_in=[1 0 1 1 0 1 0 0];
full_len=length(bits_in);
% Angle [pi/4 3*pi/4 -3*pi/4 -pi/4] corresponds to
www.eeworm.com/read/309167/13680572
c dcreate_dist_matrix.c
#include
#include "superlu_ddefs.h"
int dcreate_dist_matrix(SuperMatrix *A, int_t m, int_t n, int_t nnz,
double *nzval_g, int_t *rowind_g, int_t *colptr_g,
gridinfo_t *grid)
{
/*
*
www.eeworm.com/read/308043/13710857
cfg q_matrix_def.cfg
# This is the configuration file for initialising the Q matrix.
# Altogether 6 matrix for 4x4 block and 2 matrix for 8x8 block
# The values range from 1 to 255
# If first value of matrix is equal t
www.eeworm.com/read/308043/13710868
cfg q_matrix2.cfg
# This is the configuration file for initialising the Q matrix.
# Altogether 6 matrix for 4x4 block and 2 matrix for 8x8 block
# The values range from 1 to 255
# If first value of matrix is equal t
www.eeworm.com/read/308016/13711217
h _matrix44_sse.h
#ifndef _MATRIX44_SSE_H
#define _MATRIX44_SSE_H
//------------------------------------------------------------------------------
/**
SSE based matrix44 class.
@author
- RadonLabs G