diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-20 18:24:16 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-20 18:24:16 +0000 |
commit | 19fe6552c456e41c0b85816806399ca1609255c0 (patch) | |
tree | 80c68711086ce04449ba71186042e5a51e5ecec4 /lib/matrix.rb | |
parent | a64338ce44422800fa812de4184d91b91c16b6c3 (diff) |
Matrix: Add #reflexive? method. [Fix GH-1730]
Adapted from a patch by Yilo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/matrix.rb')
-rw-r--r-- | lib/matrix.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/matrix.rb b/lib/matrix.rb index 7639b1de6d..62852bdad0 100644 --- a/lib/matrix.rb +++ b/lib/matrix.rb @@ -814,6 +814,15 @@ class Matrix end # + # Returns +true+ if this is a reflexive matrix. + # Raises an error if matrix is not square. + # + def reflexive? + Matrix.Raise ErrDimensionMismatch unless square? + each(:diagonal).all? { |e| e == 1 } + end + + # # Returns +true+ if this is a unitary matrix # Raises an error if matrix is not square. # |