Skip to content

Commit 082a43c

Browse files
committed
Migrate full(X) to convert(Array, X) in tests outside of test/sparsedir and test/linalg. Migrate full to convert in some documentation.
1 parent 9c84aae commit 082a43c

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

doc/manual/arrays.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ reference.
831831
+----------------------------------------+----------------------------------+--------------------------------------------+
832832
| :func:`speye(n) <speye>` | :func:`eye(n) <eye>` | Creates a *n*-by-*n* identity matrix. |
833833
+----------------------------------------+----------------------------------+--------------------------------------------+
834-
| :func:`full(S) <full>` | :func:`sparse(A) <sparse>` | Interconverts between dense |
834+
| :func:`convert(Array, S) <convert>` | :func:`sparse(A) <sparse>` | Interconverts between dense |
835835
| | | and sparse formats. |
836836
+----------------------------------------+----------------------------------+--------------------------------------------+
837837
| :func:`sprand(m,n,d) <sprand>` | :func:`rand(m,n) <rand>` | Creates a *m*-by-*n* random matrix (of |

doc/stdlib/arrays.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1080,3 +1080,4 @@ dense counterparts. The following functions are specific to sparse arrays.
10801080
For additional (algorithmic) information, and for versions of these methods that forgo argument checking, see (unexported) parent methods :func:`Base.SparseArrays.unchecked_noalias_permute!` and :func:`Base.SparseArrays.unchecked_aliasing_permute!`\ .
10811081

10821082
See also: :func:`Base.SparseArrays.permute`
1083+

doc/stdlib/linalg.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Linear algebra functions in Julia are largely implemented by calling functions f
110110

111111
.. Docstring generated from Julia source
112112
113-
Constructs an upper (``isupper=true``\ ) or lower (``isupper=false``\ ) bidiagonal matrix using the given diagonal (``dv``\ ) and off-diagonal (``ev``\ ) vectors. The result is of type ``Bidiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`full`\ . ``ev``\ 's length must be one less than the length of ``dv``\ .
113+
Constructs an upper (``isupper=true``\ ) or lower (``isupper=false``\ ) bidiagonal matrix using the given diagonal (``dv``\ ) and off-diagonal (``ev``\ ) vectors. The result is of type ``Bidiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`convert`\ . ``ev``\ 's length must be one less than the length of ``dv``\ .
114114

115115
**Example**
116116

@@ -125,7 +125,7 @@ Linear algebra functions in Julia are largely implemented by calling functions f
125125

126126
.. Docstring generated from Julia source
127127
128-
Constructs an upper (``uplo='U'``\ ) or lower (``uplo='L'``\ ) bidiagonal matrix using the given diagonal (``dv``\ ) and off-diagonal (``ev``\ ) vectors. The result is of type ``Bidiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`full`\ . ``ev``\ 's length must be one less than the length of ``dv``\ .
128+
Constructs an upper (``uplo='U'``\ ) or lower (``uplo='L'``\ ) bidiagonal matrix using the given diagonal (``dv``\ ) and off-diagonal (``ev``\ ) vectors. The result is of type ``Bidiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`convert`\ . ``ev``\ 's length must be one less than the length of ``dv``\ .
129129

130130
**Example**
131131

@@ -154,13 +154,13 @@ Linear algebra functions in Julia are largely implemented by calling functions f
154154

155155
.. Docstring generated from Julia source
156156
157-
Construct a symmetric tridiagonal matrix from the diagonal and first sub/super-diagonal, respectively. The result is of type ``SymTridiagonal`` and provides efficient specialized eigensolvers, but may be converted into a regular matrix with :func:`full`\ .
157+
Construct a symmetric tridiagonal matrix from the diagonal and first sub/super-diagonal, respectively. The result is of type ``SymTridiagonal`` and provides efficient specialized eigensolvers, but may be converted into a regular matrix with :func:`convert`\ .
158158

159159
.. function:: Tridiagonal(dl, d, du)
160160

161161
.. Docstring generated from Julia source
162162
163-
Construct a tridiagonal matrix from the first subdiagonal, diagonal, and first superdiagonal, respectively. The result is of type ``Tridiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`full`\ . The lengths of ``dl`` and ``du`` must be one less than the length of ``d``\ .
163+
Construct a tridiagonal matrix from the first subdiagonal, diagonal, and first superdiagonal, respectively. The result is of type ``Tridiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`convert`\ . The lengths of ``dl`` and ``du`` must be one less than the length of ``d``\ .
164164

165165
.. function:: Symmetric(A, uplo=:U)
166166

@@ -658,7 +658,7 @@ Linear algebra functions in Julia are largely implemented by calling functions f
658658

659659
.. Docstring generated from Julia source
660660
661-
Compute the Hessenberg decomposition of ``A`` and return a ``Hessenberg`` object. If ``F`` is the factorization object, the unitary matrix can be accessed with ``F[:Q]`` and the Hessenberg matrix with ``F[:H]``\ . When ``Q`` is extracted, the resulting type is the ``HessenbergQ`` object, and may be converted to a regular matrix with :func:`full`\ .
661+
Compute the Hessenberg decomposition of ``A`` and return a ``Hessenberg`` object. If ``F`` is the factorization object, the unitary matrix can be accessed with ``F[:Q]`` and the Hessenberg matrix with ``F[:H]``\ . When ``Q`` is extracted, the resulting type is the ``HessenbergQ`` object, and may be converted to a regular matrix with :func:`convert`\ .
662662

663663
.. function:: hessfact!(A)
664664

@@ -974,7 +974,7 @@ Linear algebra functions in Julia are largely implemented by calling functions f
974974

975975
.. Docstring generated from Julia source
976976
977-
Construct a tridiagonal matrix from the first subdiagonal, diagonal, and first superdiagonal, respectively. The result is of type ``Tridiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`full`\ . The lengths of ``dl`` and ``du`` must be one less than the length of ``d``\ .
977+
Construct a tridiagonal matrix from the first subdiagonal, diagonal, and first superdiagonal, respectively. The result is of type ``Tridiagonal`` and provides efficient specialized linear solvers, but may be converted into a regular matrix with :func:`convert`\ . The lengths of ``dl`` and ``du`` must be one less than the length of ``d``\ .
978978

979979
.. function:: rank(M)
980980

doc/stdlib/strings.rst

+1
Original file line numberDiff line numberDiff line change
@@ -482,3 +482,4 @@
482482
.. Docstring generated from Julia source
483483
484484
General unescaping of traditional C and Unicode escape sequences. Reverse of :func:`escape_string`\ . See also :func:`unescape_string`\ .
485+

test/hashing.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ end
8989
x = sprand(10, 10, 0.5)
9090
x[1] = 1
9191
x.nzval[1] = 0
92-
@test hash(x) == hash(full(x))
92+
@test hash(x) == hash(convert(Array, x))
9393

9494
let a = QuoteNode(1), b = QuoteNode(1.0)
9595
@test (hash(a)==hash(b)) == (a==b)

test/perf/threads/stockcorr/pstockcorr.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function pstockcorr(n)
7878
SimulPriceB[1,:] = CurrentPrice[2]
7979

8080
## Generating the paths of stock prices by Geometric Brownian Motion
81-
const UpperTriangle = full(chol(Corr)) # UpperTriangle Matrix by Cholesky decomposition
81+
const UpperTriangle = convert(Array, chol(Corr)) # UpperTriangle Matrix by Cholesky decomposition
8282

8383
# Optimization: pre-allocate these for performance
8484
# NOTE: the new GC will hopefully fix this, but currently GC time

0 commit comments

Comments
 (0)