-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add visualizations package with dependencies.
Update baseline dependencies. Also reduce baseline long method. Update Roassal deprecated class names.
- Loading branch information
Hernán Morales Durand
committed
Dec 27, 2023
1 parent
264d746
commit f24cbfb
Showing
9 changed files
with
240 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Package { #name : #BaselineOfPolyMath } | ||
Package { #name : 'BaselineOfPolyMath' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 9 additions & 8 deletions
17
src/Math-PrincipalComponentAnalysis/PMPrincipalComponentAnalyser.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
Class { | ||
#name : #PMPrincipalComponentAnalyser, | ||
#superclass : #Object, | ||
#name : 'PMPrincipalComponentAnalyser', | ||
#superclass : 'Object', | ||
#instVars : [ | ||
'componentsNumber' | ||
], | ||
#category : #'Math-PrincipalComponentAnalysis' | ||
#category : 'Math-PrincipalComponentAnalysis', | ||
#package : 'Math-PrincipalComponentAnalysis' | ||
} | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
PMPrincipalComponentAnalyser >> componentsNumber [ | ||
^ componentsNumber | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
PMPrincipalComponentAnalyser >> componentsNumber: anInteger [ | ||
componentsNumber := anInteger | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
PMPrincipalComponentAnalyser >> fit: aPMMatrix [ | ||
^ self subclassResponsibility | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
PMPrincipalComponentAnalyser >> fitAndTransform: aPMMatrix [ | ||
^ (self fit: aPMMatrix) transform: aPMMatrix | ||
] | ||
|
||
{ #category : #accessing } | ||
{ #category : 'accessing' } | ||
PMPrincipalComponentAnalyser >> transform: aPMMatrix [ | ||
^ self subclassResponsibility | ||
] |
Oops, something went wrong.