Feature #10070 ยป add_methods_to_comments.patch
| lib/matrix.rb | ||
|---|---|---|
|
# * Matrix.zero(n)
|
||
|
# * Matrix.row_vector(row)
|
||
|
# * Matrix.column_vector(column)
|
||
|
# * Matrix.empty(row_count, column_count)
|
||
|
#
|
||
|
# To access Matrix elements/columns/rows/submatrices/properties:
|
||
|
# * #[](i, j)
|
||
| ... | ... | |
|
# * #*(x) "is matrix or number"
|
||
|
# * #+(v)
|
||
|
# * #-(v)
|
||
|
# * #/(v)
|
||
|
# * #+@
|
||
|
# * #-@
|
||
|
#
|
||