代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.h
#include "stdafx.h"
//// allocate memory for matrix with r row and c column
//
double** alloc(int r, int c)
{
double** a=new double*[r];
for(int i=0;i
matrix.h
int inverse(double a[], int n) //求逆函数
{
int *is,*js,i,j,k,l,u,v;
double d,p;
is=(int*)malloc(n*sizeof(int));//代表矩阵的行
js=(int*)malloc(n*sizeof(int)); //代表矩阵的列
for (k=0; k
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.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "Matrix"=".\Matrix.d
matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI
matrix.cpp
// Matrix.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include "matrix1.h"
#include
using namespace std;
int main()
{
int middle[3][