-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.js
102 lines (89 loc) · 3.09 KB
/
matrix.js
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
class Matrix {
constructor(rows = 1, cols = 1) {
this.rows = rows;
this.cols = cols;
this.data = Array.from(Array(this.rows), () => new Array(this.cols).fill(0));
}
// Metodos de clase
map(callback = (value = [[0]], row = 0, col = 0) => 0) {
for (let row = 0; row < this.rows; row++) {
for (let col = 0; col < this.cols; col++) {
const value = this.data[row][col];
this.data[row][col] = callback(value, row, col);
}
}
return this;
}
add(m) {
if (m instanceof Matrix) {
if (this.rows !== m.rows || this.cols !== m.cols) {
console.error('Columns and Rows of M1 must match Columns and Rows of M2.');
return;
}
return this.map((value, row, col) => value + m.data[row][col]);
} else {
return this.map(value => value + m);
}
}
mult(m) {
if (m instanceof Matrix) {
if (this.rows !== m.rows || this.cols !== m.cols) {
console.error('Columns and Rows of M1 must match Columns and Rows of M2.');
return;
}
return this.map((value, row, col) => value * m.data[row][col]);
} else {
return this.map(value => value * m);
}
}
print() {
console.table(this.data);
}
randomize(min = -1, max = 1) {
this.map(() => Math.floor((Math.random() * (max - min + 1)) + min));
}
toArray() {
const array = [];
this.data.map((row, r) => {
return row.map((value, c) => array.push(value));
});
return array;
}
// Metodos estaticos
static fromArray(array = [0]) {
return new Matrix(array.length, 1)
.map((_, row) => array[row]);
}
static map(matrix = Matrix, callback = (value = [[0]], row = 0, col = 0) => 0) {
return new Matrix(matrix.rows, matrix.cols)
.map((_, row, col) => callback(matrix.data[row][col], row, col));
}
static multiply(a = Matrix, b = Matrix) {
if (a instanceof Matrix && b instanceof Matrix) {
if (a.cols !== b.rows) {
console.error(`Columns of M1 must match rows of M2.`);
return;
}
return new Matrix(a.rows, b.cols)
.map((_, row, col) => {
let sum = 0;
for (let k = 0; k < a.cols; k++)
sum += a.data[row][k] * b.data[k][col];
return sum;
});
}
return;
}
static subtract(a = Matrix, b = Matrix) {
if (a.rows !== b.rows || a.cols !== b.cols) {
console.error('Columns and Rows of A must match Columns and Rows of B.');
return;
}
return new Matrix(a.rows, a.cols)
.map((_, row, col) => a.data[row][col] - b.data[row][col]);
}
static transpose(matrix = Matrix) {
return new Matrix(matrix.cols, matrix.rows)
.map((_, row, col) => matrix.data[col][row]);
}
}