We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5fd0c0 commit 300f536Copy full SHA for 300f536
src/Math-Tests-Matrix/PMMatrixTest.class.st
@@ -48,6 +48,16 @@ PMMatrixTest >> testAtColumnPutRepeat [
48
self assert: a equals: (PMMatrix rows: #(#(1 nil nil) #(1 nil nil) #(nil nil nil))).
49
]
50
51
+{ #category : #tests }
52
+PMMatrixTest >> testAtRow [
53
+
54
+ | a |
55
+ a := PMMatrix rows: #(#(1 2 3) #(2 3 4)).
56
57
+ self assert: (a atRow: 2) equals: (#(2 3 4) asPMVector).
58
+ self assert: (a atRow: 1) equals: (#(1 2 3) asPMVector).
59
+]
60
61
{ #category : #'linear algebra' }
62
PMMatrixTest >> testAtRowPutAtColumnPut [
63
| a |
0 commit comments