mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/matrix.rb: added documentation for Matrix#empty and Matrix#/
[Feature #10070][ruby-dev:48433] Patch by @gogotanaka git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f6e9524026
commit
e398e64ad7
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu May 21 17:29:26 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||
|
||||
* 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@atdot.net>
|
||||
|
||||
* proc.c: rename functions.
|
||||
|
|
|
@ -45,6 +45,7 @@ end
|
|||
# * 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
|
|||
# * #*(x) "is matrix or number"
|
||||
# * #+(v)
|
||||
# * #-(v)
|
||||
# * #/(v)
|
||||
# * #+@
|
||||
# * #-@
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue