summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-29 01:11:19 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-29 01:11:19 +0000
commitde97e946f04dd0374d6f2580c97591bc1fdc1f3f (patch)
tree21a6ddc936d458f3357a42dff9a1ca2072e65c02 /NEWS
parent22ffae4009c90eabf5a4e1f73caeaf3256f4e16c (diff)
* lib/matrix.rb: Add Matrix#diagonal?, hermitian?, normal?, orthogonal?
permutation?, symmetric?, {lower|upper}triangular?, unitary?, zero? git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS11
1 files changed, 11 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4423c5310a..f400391b67 100644
--- a/NEWS
+++ b/NEWS
@@ -157,6 +157,17 @@ with all sufficient information, see the ChangeLog file.
* IO.console
* matrix
+ * new methods:
+ * Matrix#diagonal?
+ * Matrix#hermitian?
+ * Matrix#lower_triangular?
+ * Matrix#normal?
+ * Matrix#orthogonal?
+ * Matrix#permutation?
+ * Matrix#symmetric?
+ * Matrix#unitary?
+ * Matrix#upper_triangular?
+ * Matrix#zero?
* extended methods:
* Matrix#each and #each_with_index can iterate on a subset of the elements
* Matrix#find_index returns [row, column] and can iterate on a subset