Skip to content

Commit 6c9cc7e

Browse files
committed
fix: transpose bug fixed
1 parent 6369778 commit 6c9cc7e

File tree

3 files changed

+70
-22
lines changed

3 files changed

+70
-22
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
- reverse / flip the matrix method added
44
- `comparseobject` deprecated in favor of `compare`
5-
- `concatenate`, `diagonal`, `reshape`, `transpose` and `flatten` are vectorized now
5+
- `concatenate`, `diagonal`, `reshape`, `transpose` and `flatten` are vectorized
6+
now
7+
- `transpose` bug fixed `"'double' is not a subtype of type 'int'"`
68

79
## 1.0.3
810

lib/src/matrix2d.dart

+8-13
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,16 @@ class Matrix2d {
7979
///// [[1,1],[2,2]]
8080
///```
8181
List transpose(List list) {
82-
final _shapeCheck = _checkArray(list);
83-
final shape = this.shape(list);
84-
if (!_shapeCheck) throw new Exception('Uneven array dimension');
85-
var temp =
86-
List.filled(shape[1], 0).map((e) => List.filled(shape[0], 0)).toList();
87-
for (var i = 0; i < list.length; i++) {
88-
if (list[i] is List) {
89-
for (var j = 0; j < list[i].length; j++) {
90-
temp[j][i] = list[i][j];
91-
}
92-
} else {
93-
temp[0][i] = list[i];
82+
if (!_checkArray(list)) throw new Exception('Uneven array dimension');
83+
var result = [];
84+
for (var i = 0; i < list[0].length; i++) {
85+
var temp = [];
86+
for (var j = 0; j < list.length; j++) {
87+
temp.add(list[j][i]);
9488
}
89+
result.add(temp);
9590
}
96-
return temp;
91+
return result;
9792
}
9893

9994
/// Function is used when we want to compute the addition of two array.

test/util/matrix2d_test.dart

+59-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,65 @@ void main() {
1414
expect(m2d.flatten(array), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 5, 7, 8, 9, 10]);
1515
});
1616

17-
test('test transpose', () {
18-
expect(m2d.transpose(array), [
19-
[1, 6, 5],
20-
[2, 7, 7],
21-
[3, 8, 8],
22-
[4, 9, 9],
23-
[5, 10, 10]
24-
]);
17+
test('test transpose with double', () {
18+
expect(
19+
m2d.transpose([
20+
[1.0, 2.0],
21+
[1.0, 2.0]
22+
]),
23+
[
24+
[1.0, 1.0],
25+
[2.0, 2.0]
26+
]);
27+
});
28+
29+
test('test transpose with int', () {
30+
expect(
31+
m2d.transpose([
32+
[1, 2],
33+
[1, 2]
34+
]),
35+
[
36+
[1, 1],
37+
[2, 2]
38+
]);
39+
});
40+
41+
test('test transpose with string', () {
42+
expect(
43+
m2d.transpose([
44+
['1', '2'],
45+
['1', '2']
46+
]),
47+
[
48+
['1', '1'],
49+
['2', '2']
50+
]);
51+
});
52+
53+
test('test transpose with bool', () {
54+
expect(
55+
m2d.transpose([
56+
[true, false],
57+
[true, false]
58+
]),
59+
[
60+
[true, true],
61+
[false, false]
62+
]);
63+
});
64+
65+
test('test transpose with dynamic', () {
66+
expect(
67+
m2d.transpose([
68+
[1, '2', true],
69+
[1, '2', false]
70+
]),
71+
[
72+
[1, 1],
73+
['2', '2'],
74+
[true, false]
75+
]);
2576
});
2677

2778
test('test reshape', () {

0 commit comments

Comments
 (0)