代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/259944/11755504
doc matrix.doc
www.eeworm.com/read/156894/11755725
exe matrix.exe
www.eeworm.com/read/259580/11779816
output matrix.output
Initialized x(i,j) = 2*i + j
x(3,1) = 7
x is
3 4
5 6
7 8
Assigned y = x
y is
3 4
5 6
7 8
x incremented by 2 is
5 6
7 8
9 10
y + x is
8 10
12 14
www.eeworm.com/read/259580/11779842
h matrix.h
#ifndef matrix_
#define matrix_
#include "myExceptions.h"
using namespace std;
template
class matrix
{
friend ostream& operator
www.eeworm.com/read/259580/11779973
cpp matrix.cpp
// test matrix class
#include
#include "matrix.h"
using namespace std;
int main(void)
{
try
{
matrix x(3,2), y, z;
int i, j;
for (i = 1; i
www.eeworm.com/read/345844/11787093
h matrix.h
/* * * * * * * * * * * * * * * * * * * * *
* FileName: Matrix.h
* Description: Matrix Class
*
* Version: 1.0
* Author: wxs
* Finish Time: 2001年7月2日
* * * * * * * * * * * * * * *
www.eeworm.com/read/345844/11787098
cpp matrix.cpp
/* * * * * * * * * * * * * * * * * * * * *
* FileName: Matrix.h
* Description: Matrix Class
*
* Version: 1.0
* Author: wxs
* Finish Time: 2001年7月2日
* * * * * * * * * * * * * * *
www.eeworm.com/read/345443/11815367
lib matrix.lib
www.eeworm.com/read/345443/11815370
src matrix.src
www.eeworm.com/read/345443/11815391