-
Notifications
You must be signed in to change notification settings - Fork 0
/
TMatrizCompleja.java
65 lines (53 loc) · 1.54 KB
/
TMatrizCompleja.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
//BENEMERITA UNIVERSIDAD AUTONOMA DE PUEBLA
//FACULTAD DE CIENCIAS DE LA COMPUTACION
//PROGRAMACION II - JESUS HUERTA AGUILAR
// --------------------> TMatrizCompleja
package com.mycompany.matricescomplejas;
public class TMatrizCompleja{
// - - - - - ATRIBUTOS - - - - -
private final int n,m;
private final TComplejo matriz[][];
// - - - - - METODOS - - - - -
//CONTRUCTOR
TMatrizCompleja(int n, int m){
this.n = n;
this.m = m;
matriz = new TComplejo[n][m];
//INSTANCIACION DE LOS COMPONENTES DE LA MATRIZ
for(int i=0; i<n; i++){
for(int j=0;j<m;j++){
matriz[i][j] = new TComplejo();
}
}
}
//SET
public void setComponente(int i, int j, TComplejo valor){
matriz[i][j].setNumReal(valor.getNumReal());
matriz[i][j].setDenReal(valor.getDenReal());
matriz[i][j].setNumImag(valor.getNumImag());
matriz[i][j].setDenImag(valor.getDenImag());
}
//GET
public int getNumeroFilas(){
return n;
}
public int getNumeroColumnas(){
return m;
}
public TComplejo getComponente(int i, int j){
return matriz[i][j];
}
//DIVERSOS
@Override
public String toString(){
String cadena = "";
int i, j;
for(i=0;i<n;i++){
for(j=0;j<m;j++){
cadena = cadena + matriz[i][j].toString() + " \t \t ";
}
cadena = cadena + "\n";
}
return cadena;
}
}//FIN TMatrizCompleja