代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
matrix.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
matrix.h
/* *********************************************************************
matrix.h - matrix operations
Copyright (C) 1991 Dean Rubine
This program is free software; you can redistribute it and/or mo
matrix.c
/* *********************************************************************
matrix.c - simple matrix operations
Copyright (C) 1991 Dean Rubine
This program is free software; you can redistribute it an
matrix.h
////////////////////////////////
// Matrix TCL Lite v1.13
// Copyright (c) 1997-2002 Techsoft Pvt. Ltd. (See License.Txt file.)
//
// Matrix.h: Matrix C++ template class include file
// Web: htt
matrix.h
typedef struct matrix {
double index[4][4];
} Matrix;
typedef struct vector {
double index[4];
} Vector;
void init_matrix(Matrix *m);
void init_vector(Vector *v);
void copy_vector(
matrix.c
#include "matrix.h"
#include "math.h"
void init_matrix(Matrix *m)
{
int i,j;
for (i=0;i
matrix.h
// Matrix class
#pragma once
#include "Vector.h"
namespace Mathematics
{
/// 4x4 matrix class.
/// The convention here is post-multiplication by a column vector.
/// ie. x =
matrix.c
/*
*
* QccPack: Quantization, compression, and coding libraries
* Copyright (C) 1997-2005 James E. Fowler
*
* This library is free software; you can redistribute it and/or
* modify it under t
matrix.java
package jmathlib.toolbox.jmathlib.matrix._private.Jama;
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import jav