Rename MultNeutral to MultGroup

This commit is contained in:
Kiana Sheibani 2022-07-05 20:00:52 -04:00
parent 97bd20d722
commit 6cdb22a6ed
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
3 changed files with 25 additions and 21 deletions

View file

@ -99,11 +99,11 @@ getTranslationVector mat with (viewShape mat)
export
scalingH : Num a => {n : _} -> a -> HMatrix' n a
scalingH : {n : _} -> Num a => a -> HMatrix' n a
scalingH x = indexSet [last,last] 1 $ repeatDiag x 0
export
translationH : Num a => {n : _} -> Vector n a -> HMatrix' n a
translationH : {n : _} -> Num a => Vector n a -> HMatrix' n a
translationH = hmatrix identity
export