代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.hpp
// matrix.hpp
// declaration and implementation of template class Matrix
// email: wangsg@lzb.ac.cn
// August 14, 2003
// Ver 1.0
// Modification history
//
matrix.hpp
// matrix.hpp
// declaration and implementation of template class Matrix
// email: wangsg@lzb.ac.cn
// August 14, 2003
// Ver 1.0
// Modification history
// Han,xu
matrix.h
#ifndef HEADFILE_MATRIX
#define HEADFILE_MATRIX
class matrix{
short rows, cols;
int *elems;
public:
matrix(short rows, short cols); // 构造函数
~matrix(); // 析构函数
// 重载'[]'以支持下标操
matrix.cpp
#include "stdafx.h"
#include "matrix.h"
#include
#include
using namespace std;
// 构造函数,分配内存
matrix::matrix(short rows, short cols)
{
matrix::rows = rows;
matrix::c
matrix.c
#include "stdio.h"
#include "stdlib.h"
#include "mpi.h"
#define intsize sizeof(int)
#define floatsize sizeof(float)
#define charsize sizeof(char)
#define A(x,y) A[x*K+y]
#define B(x,y) B[x*N+y]
#defi
matrix.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
matrix.java
package com.biolab.node.nexTest.Jama;
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import java.text.FieldPositi
matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
matrix.hpp
#pragma ident "$Id: Matrix.hpp 70 2006-08-01 18:36:21Z ehagen $"
/**
* @file Matrix.hpp
* Basic Matrix algorithms
*/
#ifndef GPSTK_MATRIX_HPP
#define GPSTK_MATRIX_HPP
//======================