代码搜索:矩阵分析
找到约 10,000 项符合「矩阵分析」的源代码
代码结果 10,000
www.eeworm.com/read/156098/11828133
cpp 矩阵换位法.cpp
// 矩阵换位法.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "矩阵换位法.h"
#include "矩阵换位法Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static
www.eeworm.com/read/156098/11828135
opt 矩阵换位法.opt
www.eeworm.com/read/156098/11828138
dsp 矩阵换位法.dsp
# Microsoft Developer Studio Project File - Name="矩阵换位法" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) App
www.eeworm.com/read/156098/11828141
ncb 矩阵换位法.ncb
www.eeworm.com/read/156098/11828144
rc 矩阵换位法.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/156098/11828150
clw 矩阵换位法.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CMyDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "矩阵换位法.h"
www.eeworm.com/read/156098/11828159
plg 矩阵换位法.plg
Build Log
--------------------Configuration: 矩阵换位法 - Win32 Debug--------------------
Command Lines
Results
矩阵换位法.exe - 0 error(
www.eeworm.com/read/156098/11828163
dsw 矩阵换位法.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/155457/11870052
cpp 矩阵主函数.cpp
#include"matrix.h"
#include"iostream.h"
void main()
{ double x;
/* matrix A(2,3);
A.input();
A.output();
A.zhuanzhi().output();
*/
matrix B(2,2);
B.input();
x=B.surplus();
www.eeworm.com/read/154501/11949853
txt 矩阵连乘问题.txt
/*----------------------------文件头--------------------------
问 题:矩阵连乘问题
描 述:给定n 个矩阵{A1, A2,...,An},其中Ai与Ai+1是可乘的,i=1,2…,n-1。考察这n个矩阵的连乘积A1A2...An。矩阵A 和B 可乘的条件是矩阵A的列数等于矩阵B 的行数。若A 是一个p x q矩阵,B是一个q *