代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/237003/13983093
cc matrix.cc
/*
* Copyright (C) 1997 Todd Veldhuizen
* All rights reserved. Please see for terms and
* conditions of use.
*
*/
#ifndef BZ_MATRIX_CC
#define BZ_MATRI
www.eeworm.com/read/134505/13985666
cs matrix.cs
using System;
using System.Text;
namespace GoldenChicken.MathUtils
{
public class Matrix
{
private int m_rows;
private int m_cols;
private double[,] m_data;
#region 构造函数
p
www.eeworm.com/read/133627/14033042
h matrix.h
// Matrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#ifndef MATRIX_CALC_BASIC
#define MATRIX_CALC_BASIC
class CMatrix
{
p
www.eeworm.com/read/133627/14033048
cpp matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#include "Stdafx.h"
#include "matrix.h"
#include
////////
www.eeworm.com/read/133442/14043164
ncb matrix.ncb
www.eeworm.com/read/133442/14043167
dsp 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
www.eeworm.com/read/133442/14043169
opt matrix.opt
www.eeworm.com/read/133442/14043171
dsw matrix.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/133442/14043178
plg matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI
www.eeworm.com/read/132916/14066240
h matrix.h
#include
int const n=2;
int const m=3;
/*两个矩阵相乘*/
void matrix_mul(double (*x)[n],double (*y)[n],double (*temp)[n])
{
int i,j,k;
for(i=0;i