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 d689214 commit 121e265Copy full SHA for 121e265
src/Math-Matrix/PMSingularValueDecomposition.class.st
@@ -32,15 +32,11 @@ Class {
32
#name : #PMSingularValueDecomposition,
33
#superclass : #Object,
34
#instVars : [
35
- 'm',
36
- 'n',
37
'u',
38
's',
39
- 'v',
40
- 'signU',
41
- 'signV'
+ 'v'
42
],
43
- #category : 'Math-Matrix'
+ #category : #'Math-Matrix'
44
}
45
46
{ #category : #'instance creation' }
@@ -50,7 +46,7 @@ PMSingularValueDecomposition class >> decompose: aMatrix [
50
51
47
{ #category : #initialization }
52
48
PMSingularValueDecomposition >> initialize: aMatrix [
53
- | symU symV eigenU eigenV diag |
49
+ | symU symV eigenU eigenV diag m n |
54
m := aMatrix numberOfRows.
55
n := aMatrix numberOfColumns.
56
symU := aMatrix * aMatrix transpose.
0 commit comments