代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/263664/11348566
cpp matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#include "Matrix.h"
#include
////////////////////////////
www.eeworm.com/read/263654/11348976
h 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
www.eeworm.com/read/263580/11354640
h 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
www.eeworm.com/read/263572/11354910
ncb matrix.ncb
www.eeworm.com/read/263572/11354912
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/263572/11354916
opt matrix.opt
www.eeworm.com/read/263572/11354919
dsw matrix.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "Matrix"=".\Matrix.d
www.eeworm.com/read/263572/11354924
plg matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI
www.eeworm.com/read/263572/11354930
cpp 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][
www.eeworm.com/read/263146/11373763