From 49e9f4714ef5d8c50ae757e3a7bf8b0807de63af Mon Sep 17 00:00:00 2001 From: marcandre Date: Tue, 7 Oct 2014 20:16:55 +0000 Subject: [PATCH] * NEWS: Move Matrix changes to the right place git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- NEWS | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/NEWS b/NEWS index 021c1f9cb4..6839376d2d 100644 --- a/NEWS +++ b/NEWS @@ -76,18 +76,6 @@ with all sufficient information, see the ChangeLog file. * Most symbols which are returned by String#to_sym and String#intern are GC-able. -* Matrix - * New methods: - * Matrix#first_minor(row, column) returns the submatrix obtained - by deleting the specified row and column. - * Matrix#cofactor(row, column) returns the (row, column) cofactor - which is obtained by multiplying the first minor by (-1)**(row + column). - * hstack and vstack are new instance and class methods to stack matrices - horizontally and vertically. - * Matrix#laplace_expansion(row_or_column: num) returns the laplace_expansion - along the +num+ -th row or column. - * Vector.basis(size:, index:) returns the specified basis vector - * Method * New methods: * Method#curry([arity]) returns a curried Proc. @@ -148,6 +136,18 @@ with all sufficient information, see the ChangeLog file. * Extended methods: * find method accepts "ignore_error" keyword argument. +* Matrix + * New methods: + * Matrix#first_minor(row, column) returns the submatrix obtained + by deleting the specified row and column. + * Matrix#cofactor(row, column) returns the (row, column) cofactor + which is obtained by multiplying the first minor by (-1)**(row + column). + * hstack and vstack are new instance and class methods to stack matrices + horizontally and vertically. + * Matrix#laplace_expansion(row_or_column: num) returns the laplace_expansion + along the +num+ -th row or column. + * Vector.basis(size:, index:) returns the specified basis vector + * Pathname * Pathname#/ is aliased to Pathname#+. * New methods: