代码搜索结果
找到约 72,433 项符合
LED Matrix 的代码
led.mod
.MODEL LED D(IS=93.1P RS=42M N=4.61 BV=4 IBV=10U
+ CJO=2.97P VJ=.75 M=.333 TT=4.32U)
matrix.cc
#include "Matrix.h"
#include
// Constructors
Matrix::Matrix()
{
M = 0;
N = 0;
X = 0;
}
Matrix::Matrix(int m, int n, bool I/*= false*/)
{
M=m;
N=n;
X=new double [m*
matrix.h
#ifndef _Matrix_h_DEFINED
#define _Matrix_h_DEFINED
class Matrix
{
public:
int M; // number of rows
int N; // number of columns
double* X; // matrix pointer
int getm() const;
matrix.h
/////////////////////////////////////////////////////////////////////////////
// Name: matrix.h
// Purpose: wxTransformMatrix class. NOT YET USED
//! Author: Chris Breeze, Julian Sm
matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H
#include "defines.h"
namespace annie
{
/** A class for 2-dimensional matrices.
* This probably isn't the most efficient way to do matrix operations,
* use of
matrix.dsp
# Microsoft Developer Studio Project File - Name="matrix" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
matrix.cpp
///////////////////////////////////////////////////////////////////////////////
//
// Matrix.cpp
//
// Demonstrates template metaprogramming for matrix operations
//
// Copyright
matrix.h
///////////////////////////////////////////////////////////////////////////////
//
// Matrix.h
//
// Demonstrates template metaprogramming for matrix operations
//
// Defines the following template fu
matrix.c
#include "quicktime.h"
int quicktime_matrix_init(quicktime_matrix_t *matrix)
{
int i;
for(i = 0; i < 9; i++) matrix->values[i] = 0;
matrix->values[0] = matrix->values[4] = 1;
matrix-
matrix.h
/***********************************************************************
matrix.h - matrix operations
Copyright (C) 1991 Dean Rubine
This program is free software; you can redistribute it and/or mo