代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/334226/3370311
m is_matrix-3.m
## Yes, this is right, is_matrix() checks for non-empty matrices.
is_matrix ([]) == 0
www.eeworm.com/read/332155/3401175
java matrix_product.java
public class Matrix_product
{
public static void main( String args[] )
{
int intMatrixA[][] = { {7,9,4} , {5,6,8} };
int intMatrixB[][] = { {9,5,2,8} , {5,9,7,2} , {4,7,5,8} };
int i
www.eeworm.com/read/332155/3401176
jcw matrix_product.jcw
! ** JCreator Workspace File (C)2000
! ********** DO NOT EDIT *********
VERSION := "1.00"
LABEL := "Matrix_product"
! Start Project Structure
#[BeginProject]SOURCE := "Matrix_product.jcp" #[E
www.eeworm.com/read/332155/3401177
jcp matrix_product.jcp
! ** JCreator Project File (C)2000
! ********** DO NOT EDIT *********
VERSION := "1.10"
LABEL := "Matrix_product"
JDKPROFILE := ""
ACTIVE := "1"
OUTPUTPATH := "classes"
COMPILER := ""
! St
www.eeworm.com/read/331815/3402591
as matrix3d.as
package away3d.core.math
{
/**
* A 3D transformation 4x3 matrix
*/
public final class Matrix3D
{
private const toDEGREES:Number = 180 / Math.PI;
private var _positi