-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathIMatrixI.java
82 lines (56 loc) · 2.24 KB
/
IMatrixI.java
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
/*---
iGeo - http://igeo.jp
Copyright (c) 2002-2013 Satoru Sugihara
This file is part of iGeo.
iGeo is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3.
iGeo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with iGeo. If not, see <http://www.gnu.org/licenses/>.
---*/
package igeo;
/**
Abstract interface of numerical matrix.
@author Satoru Sugihara
*/
public interface IMatrixI extends IMatrixOp{
//public IMatrix get();
public IMatrixI dup();
/** alias of dup() */
public IMatrixI cp();
public int rowNum();
public int columnNum();
//public IIntegerI rowNumR();
//public IIntegerI columnNumR();
public int rowNum(ISwitchE e);
public int columnNum(ISwitchE e);
public IIntegerI rowNum(ISwitchR r);
public IIntegerI columnNum(ISwitchR r);
public IMatrixI setZero();
public IMatrixI setId();
public double get(int row, int column);
//public IDoubleI getR(IIntegerI row, IIntegerI column);
public double get(ISwitchE e, int row, int column);
public IDoubleI get(ISwitchR r, IIntegerI row, IIntegerI column);
public IMatrixI set(double[][] v);
public IMatrixI set(IDoubleI[][] v);
public IMatrix set(int row, int column, double value);
public IMatrix set(IIntegerI row, IIntegerI column, IDoubleI value);
public IMatrixI set(IMatrixI m);
public IMatrixI add(IMatrixI m);
public IMatrixI sub(IMatrixI m);
public IMatrixI div(double v);
public IMatrixI div(IDoubleI v);
public IMatrixI mul(double v);
public IMatrixI mul(IDoubleI v);
public IMatrixI mul(IMatrixI m);
public double determinant();
//public IDoubleI determinantR();
public double determinant(ISwitchE e);
public IDoubleI determinant(ISwitchR r);
public IMatrixI invert();
}