@@ -345,32 +345,32 @@ function cholfact(x::Number, uplo::Symbol=:U)
345
345
end
346
346
347
347
348
- function convert ( :: Type{ Cholesky{T}} , C:: Cholesky ) where T
348
+ function Cholesky {T} ( C:: Cholesky ) where T
349
349
Cnew = convert (AbstractMatrix{T}, C. factors)
350
350
Cholesky {T, typeof(Cnew)} (Cnew, C. uplo, C. info)
351
351
end
352
- convert ( :: Type{ Factorization{T}} , C:: Cholesky{T} ) where {T} = C
353
- convert ( :: Type{ Factorization{T}} , C:: Cholesky ) where {T} = convert ( Cholesky{T}, C)
354
- convert ( :: Type{ CholeskyPivoted{T}} , C:: CholeskyPivoted{T} ) where {T} = C
355
- convert ( :: Type{ CholeskyPivoted{T}} , C:: CholeskyPivoted ) where {T} =
352
+ Factorization {T} ( C:: Cholesky{T} ) where {T} = C
353
+ Factorization {T} ( C:: Cholesky ) where {T} = Cholesky {T} ( C)
354
+ CholeskyPivoted {T} ( C:: CholeskyPivoted{T} ) where {T} = C
355
+ CholeskyPivoted {T} ( C:: CholeskyPivoted ) where {T} =
356
356
CholeskyPivoted (AbstractMatrix {T} (C. factors),C. uplo,C. piv,C. rank,C. tol,C. info)
357
- convert ( :: Type{ Factorization{T}} , C:: CholeskyPivoted{T} ) where {T} = C
358
- convert ( :: Type{ Factorization{T}} , C:: CholeskyPivoted ) where {T} = convert ( CholeskyPivoted{T}, C)
357
+ Factorization {T} ( C:: CholeskyPivoted{T} ) where {T} = C
358
+ Factorization {T} ( C:: CholeskyPivoted ) where {T} = CholeskyPivoted {T} ( C)
359
359
360
- convert ( :: Type{ AbstractMatrix} , C:: Cholesky ) = C. uplo == ' U' ? C[:U ]' C[:U ] : C[:L ]* C[:L ]'
361
- convert ( :: Type{ AbstractArray} , C:: Cholesky ) = convert ( AbstractMatrix, C)
362
- convert ( :: Type{ Matrix} , C:: Cholesky ) = convert ( Array, convert (AbstractArray, C))
363
- convert ( :: Type{ Array} , C:: Cholesky ) = convert ( Matrix, C)
364
- full (C:: Cholesky ) = convert ( AbstractArray, C)
360
+ AbstractMatrix ( C:: Cholesky ) = C. uplo == ' U' ? C[:U ]' C[:U ] : C[:L ]* C[:L ]'
361
+ AbstractArray ( C:: Cholesky ) = AbstractMatrix ( C)
362
+ Matrix ( C:: Cholesky ) = Array (AbstractArray ( C))
363
+ Array ( C:: Cholesky ) = Matrix ( C)
364
+ full (C:: Cholesky ) = AbstractArray ( C)
365
365
366
- function convert ( :: Type{ AbstractMatrix} , F:: CholeskyPivoted )
366
+ function AbstractMatrix ( F:: CholeskyPivoted )
367
367
ip = invperm (F[:p ])
368
368
(F[:L ] * F[:U ])[ip,ip]
369
369
end
370
- convert ( :: Type{ AbstractArray} , F:: CholeskyPivoted ) = convert ( AbstractMatrix, F)
371
- convert ( :: Type{ Matrix} , F:: CholeskyPivoted ) = convert ( Array, convert (AbstractArray, F))
372
- convert ( :: Type{ Array} , F:: CholeskyPivoted ) = convert ( Matrix, F)
373
- full (F:: CholeskyPivoted ) = convert ( AbstractArray, F)
370
+ AbstractArray ( F:: CholeskyPivoted ) = AbstractMatrix ( F)
371
+ Matrix ( F:: CholeskyPivoted ) = Array (AbstractArray ( F))
372
+ Array ( F:: CholeskyPivoted ) = Matrix ( F)
373
+ full (F:: CholeskyPivoted ) = AbstractArray ( F)
374
374
375
375
copy (C:: Cholesky ) = Cholesky (copy (C. factors), C. uplo, C. info)
376
376
copy (C:: CholeskyPivoted ) = CholeskyPivoted (copy (C. factors), C. uplo, C. piv, C. rank, C. tol, C. info)
0 commit comments