代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/481866/6631778
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/481866/6631784
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/481866/6631787
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)
www.eeworm.com/read/481380/6639569
h wimax_matrix.h
/*
* Copyright (C) 2007 Dip. Ing. dell'Informazione, University of Pisa, Italy
* http://info.iet.unipi.it/~cng/ns2mesh80216/
*
* This program is free software; you can redistribute it and/or m
www.eeworm.com/read/410811/11268667
h q_matrix.h
/*!
***************************************************************************
* \file
* q_matrix.h
*
* \brief
* Headerfile for q_matrix array
*
* \date
* 07. Apr 2004
www.eeworm.com/read/410811/11268899
c q_matrix.c
/*!
*************************************************************************************
* \file q_matrix.c
*
* \brief
* read q_matrix parameters from input file: q_matrix.cfg
*
**
www.eeworm.com/read/410811/11268951
cfg q_matrix.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/263572/11354909
h matrix1.h
// matrix1.h: interface for the matrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX1_H__4629A3D9_10E0_4EF8_B583_8FDFB27F9B59__INCLUDED_