Skip to content

Commit

Permalink
more export and doc updates. closes #3950
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Aug 14, 2013
1 parent 21184e7 commit 286d166
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 38 deletions.
2 changes: 0 additions & 2 deletions base/combinatorics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ function binomial{T<:Integer}(n::T, k::T)
sgn*iround(T,x)
end

pascal(n) = [binomial(i+j-2,i-1) for i=1:n,j=1:n]

## other ordering related functions ##

function shuffle!(a::AbstractVector)
Expand Down
3 changes: 0 additions & 3 deletions base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,6 @@ export
parent,
parentindexes,
partitions,
pascal,
permutations,
permute!,
permutedims,
Expand Down Expand Up @@ -606,8 +605,6 @@ export
istril,
istriu,
kron,
ldltd!,
ldltd,
linreg,
logdet,
lu,
Expand Down
24 changes: 0 additions & 24 deletions doc/UNDOCUMENTED.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,6 @@ arrays

UNDOCUMENTED

.. function:: pascal(n)

UNDOCUMENTED

.. function:: promote_shape(...)

UNDOCUMENTED
Expand All @@ -141,14 +137,6 @@ arrays
linear algebra
--------------

.. function:: ldltd!(A::SymTridiagonal{T<:Union(Float64,Complex{Float32},Float32,Complex{Float64})})

UNDOCUMENTED

.. function:: ldltd(A::SymTridiagonal{T<:Union(Float64,Complex{Float32},Float32,Complex{Float64})})

UNDOCUMENTED

.. function:: solve(...)

UNDOCUMENTED
Expand Down Expand Up @@ -196,10 +184,6 @@ strings and text output

UNDOCUMENTED

.. function:: print_matrix(...)

UNDOCUMENTED

.. function:: print_shortest(...)

UNDOCUMENTED
Expand Down Expand Up @@ -231,14 +215,6 @@ strings and text output
.. function:: xdump(...)

UNDOCUMENTED

.. function:: print_quoted(io, s::String)

UNDOCUMENTED

.. function:: print_quoted_literal(io, s::String)

UNDOCUMENTED


random numbers
Expand Down
8 changes: 0 additions & 8 deletions doc/stdlib/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -980,11 +980,7 @@ Strings

General unescaping of traditional C and Unicode escape sequences. Reverse of :func:`escape_string`. See also :func:`print_unescaped`.

.. function:: unescape_chars(s::String, unescape::String) -> String

Bare minimum unescaping function unescapes only given characters. See also :func:`print_unescaped_chars`.


I/O
---

Expand Down Expand Up @@ -1154,10 +1150,6 @@ I/O

General unescaping of traditional C and Unicode escape sequences. Reverse of :func:`print_escaped`.

.. function:: print_unescaped_chars(io, s::String, unescape::String)

Bare minimum unescaping function unescapes only given characters.


Network I/O
-----------
Expand Down
2 changes: 1 addition & 1 deletion test/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ for elty in (Float32, Float64, Complex64, Complex128)
Ts = SymTridiagonal(d, dl)
Fs = full(Ts)
invFsv = Fs\v
Tldlt = ldltd(Ts)
Tldlt = Base.ldltd(Ts)
x = Tldlt\v
@test_approx_eq x invFsv
# eigenvalues/eigenvectors of symmetric tridiagonal
Expand Down

0 comments on commit 286d166

Please sign in to comment.