[前][次][番号順一覧][スレッド一覧]

ruby-changes:38510

From: hsbt <ko1@a...>
Date: Thu, 21 May 2015 17:29:40 +0900 (JST)
Subject: [ruby-changes:38510] hsbt:r50591 (trunk): * lib/matrix.rb: added documentation for Matrix#empty and Matrix#/

hsbt	2015-05-21 17:29:32 +0900 (Thu, 21 May 2015)

  New Revision: 50591

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50591

  Log:
    * lib/matrix.rb: added documentation for Matrix#empty and Matrix#/
      [Feature #10070][ruby-dev:48433] Patch by @gogotanaka

  Modified files:
    trunk/ChangeLog
    trunk/lib/matrix.rb
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 50590)
+++ ChangeLog	(revision 50591)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu May 21 17:29:26 2015  SHIBATA Hiroshi  <hsbt@r...>
+
+	* lib/matrix.rb: added documentation for Matrix#empty and Matrix#/
+	  [Feature #10070][ruby-dev:48433] Patch by @gogotanaka
+
 Thu May 21 17:02:43 2015  Koichi Sasada  <ko1@a...>
 
 	* proc.c: rename functions.
Index: lib/matrix.rb
===================================================================
--- lib/matrix.rb	(revision 50590)
+++ lib/matrix.rb	(revision 50591)
@@ -45,6 +45,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/matrix.rb#L45
 # * Matrix.zero(n)
 # * Matrix.row_vector(row)
 # * Matrix.column_vector(column)
+# * Matrix.empty(row_count, column_count)
 # * Matrix.hstack(*matrices)
 # * Matrix.vstack(*matrices)
 #
@@ -1700,6 +1701,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/matrix.rb#L1701
 # * #*(x) "is matrix or number"
 # * #+(v)
 # * #-(v)
+# * #/(v)
 # * #+@
 # * #-@
 #

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]