-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matrix.cpp
102 lines (69 loc) · 1.96 KB
/
Matrix.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*#include "Matrix.h"
#include <iostream>
#include <cassert>
using namespace std ;
template<typename t>
Matrix<t>::Matrix(int rows , int columes){
row = rows ;
col = columes ;
arr = new t*[rows] ;
for( int i = 0 ; i < row ; i++)
arr[i] = new t [col] ;
}
template<typename t>
Matrix<t> Matrix<t>::operator+(Matrix<t> &mat){
Matrix<t> result( row , col ) ;
t value ;
for( int i = 0 ; i < mat.row ; i++){
for( int j = 0 ; j < mat.col ; j++){
value = this->getvalue(i,j) + mat.getvalue(i , j) ;
result.setvalue(i,j,value) ;
}
}
return result ;
}
template<typename t>
Matrix<t> Matrix<t>::operator-( Matrix<t> mat){
Matrix<t> result( row , col ) ;
t value ;
for( int i = 0 ; i < row ; i++){
for( int j = 0 ; j < col ; j++){
value = this->getvalue(i,j) - mat.getvalue(i , j) ;
result.setvalue(i,j,value) ;
}
}
return result ;
}
template<typename t>
Matrix<t> Matrix<t>::transpose(){
Matrix<t> transMatrix(col , row ) ;
t value ;
for( int i = 0 ; i < row ; i++){
for( int j = 0 ; j < col ; j++){
value = this->getvalue(i , j ) ;
transMatrix.setvalue(j , i , value ) ;
}
}
return transMatrix ;
}
template<typename t>
Matrix<t> Matrix<t>::operator*( Matrix<t> mat ){
Matrix<t> multiMatrix( this->row , mat.getcol()) ;
for( int i = 0 ; i <this->row ; i++){
for( int j = 0 ; j < mat.getcol() ; j++){
t value = 0 ;
for( int k = 0 ; k < mat.getrow() ; k++){
value += *(*(arr+i)+k) * mat.getvalue(k , j) ;
}
multiMatrix.setvalue( i , j , value) ;
}
}
return multiMatrix ;
}
template<typename t>
Matrix<t>::~Matrix(){
for( int i = 0 ; i < row ; i++)
delete [] arr[i] ;
delete [] arr ;
}
*/