Skip to content

Commit 32bd7d2

Browse files
tpoisseautargos
authored andcommitted
chore: lint
1 parent 637598e commit 32bd7d2

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

src/__tests__/matrix/utility.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ describe('utility methods', () => {
4545
matrix.set(0, 0, 10);
4646
let called = 0;
4747

48+
/**
49+
* @this {Matrix}
50+
* @param i
51+
* @param j
52+
*/
4853
function cb(i, j) {
4954
called++;
5055
expect(this).toBeInstanceOf(Matrix);

src/inspect.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
const indent = ' '.repeat(2);
22
const indentData = ' '.repeat(4);
33

4+
/**
5+
* @this {Matrix}
6+
* @returns {string}
7+
*/
48
export function inspectMatrix() {
59
return inspectMatrixWithOptions(this);
610
}

src/mathOperations.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ export function installMathOperations(AbstractMatrix, Matrix) {
801801
AbstractMatrix.prototype.powS = function powS(value) {
802802
for (let i = 0; i < this.rows; i++) {
803803
for (let j = 0; j < this.columns; j++) {
804-
this.set(i, j, Math.pow(this.get(i, j), value));
804+
this.set(i, j, this.get(i, j) ** value);
805805
}
806806
}
807807
return this;
@@ -815,7 +815,7 @@ export function installMathOperations(AbstractMatrix, Matrix) {
815815
}
816816
for (let i = 0; i < this.rows; i++) {
817817
for (let j = 0; j < this.columns; j++) {
818-
this.set(i, j, Math.pow(this.get(i, j), matrix.get(i, j)));
818+
this.set(i, j, this.get(i, j) ** matrix.get(i, j));
819819
}
820820
}
821821
return this;

src/stat.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export function getScaleByRow(matrix) {
157157
for (let i = 0; i < matrix.rows; i++) {
158158
let sum = 0;
159159
for (let j = 0; j < matrix.columns; j++) {
160-
sum += Math.pow(matrix.get(i, j), 2) / (matrix.columns - 1);
160+
sum += matrix.get(i, j) ** 2 / (matrix.columns - 1);
161161
}
162162
scale.push(Math.sqrt(sum));
163163
}
@@ -177,7 +177,7 @@ export function getScaleByColumn(matrix) {
177177
for (let j = 0; j < matrix.columns; j++) {
178178
let sum = 0;
179179
for (let i = 0; i < matrix.rows; i++) {
180-
sum += Math.pow(matrix.get(i, j), 2) / (matrix.rows - 1);
180+
sum += matrix.get(i, j) ** 2 / (matrix.rows - 1);
181181
}
182182
scale.push(Math.sqrt(sum));
183183
}
@@ -197,7 +197,7 @@ export function getScaleAll(matrix) {
197197
let sum = 0;
198198
for (let j = 0; j < matrix.columns; j++) {
199199
for (let i = 0; i < matrix.rows; i++) {
200-
sum += Math.pow(matrix.get(i, j), 2) / divider;
200+
sum += matrix.get(i, j) ** 2 / divider;
201201
}
202202
}
203203
return Math.sqrt(sum);

0 commit comments

Comments
 (0)