Skip to content

Commit

Permalink
Document x
Browse files Browse the repository at this point in the history
  • Loading branch information
helgee committed Jul 23, 2018
1 parent 1595432 commit 4ae8095
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/x.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ function _xpose6(m)
mout
end

"""
xpose6(matrix)
**Deprecated:** Use `transpose(matrix)` instead.
"""
xpose6

@deprecate xpose6 transpose

function _xpose(m)
Expand All @@ -108,6 +115,13 @@ function _xpose(m)
mout
end

"""
xpose(matrix)
**Deprecated:** Use `transpose(matrix)` instead.
"""
xpose

@deprecate xpose transpose

function _xposeg(matrix)
Expand All @@ -118,5 +132,12 @@ function _xposeg(matrix)
mout
end

"""
xposeg(matrix)
**Deprecated:** Use `transpose(matrix)` instead.
"""
xposeg

@deprecate xposeg transpose

0 comments on commit 4ae8095

Please sign in to comment.