Skip to content

Commit 387cbb8

Browse files
committed
Update README.md
1 parent e73b15b commit 387cbb8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# LinearAlgebra.jl
1+
# GenericLinearAlgebra.jl
22
<!-- [![StatsBase](http://pkg.julialang.org/badges/StatsBase_0.4.svg)](http://pkg.julialang.org/?pkg=StatsBase&ver=0.4) -->
3-
[![Build Status](https://travis-ci.org/andreasnoack/LinearAlgebra.jl.svg?branch=master)](https://travis-ci.org/andreasnoack/LinearAlgebra.jl)
4-
[![Coverage Status](https://coveralls.io/repos/github/andreasnoack/LinearAlgebra.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/andreasnoack/LinearAlgebra.jl?branch=master)
3+
[![Build Status](https://travis-ci.org/andreasnoack/GenericLinearAlgebra.jl.svg?branch=master)](https://travis-ci.org/andreasnoack/GenericLinearAlgebra.jl)
4+
[![Coverage Status](https://coveralls.io/repos/github/andreasnoack/GenericLinearAlgebra.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/andreasnoack/GenericLinearAlgebra.jl?branch=master)
55

66
### A fresh approach to numerical linear algebra in Julia
77

@@ -10,7 +10,7 @@ The purpose of this package is partly to extend linear algebra functionality in
1010
So far, this has mainly been my playground but you might find some of the functionality here useful. The package has a generic implementation of a singular value solver (vectors not handled yet) which will make it possible to compute `norm` and `cond` of matrices of `BigFloat`. The package extends the necessary method (`svdvals!`) in base. Hence
1111

1212
```jl
13-
julia> using LinearAlgebra
13+
julia> using GenericLinearAlgebra
1414

1515
julia> A = big(randn(10,10));
1616

@@ -24,7 +24,7 @@ julia> norm(A)
2424
The package also includes functions for the blocked Cholesky and QR factorization, the self-adjoint (symmetric) and the general eigenvalue problem. These routines can be accessed by fully qualifying the names
2525

2626
```jl
27-
julia> using LinearAlgebra
27+
julia> using GenericLinearAlgebra
2828

2929
julia> A = randn(1000,1000); A = A'A;
3030

@@ -33,8 +33,8 @@ julia> cholfact(A);
3333
julia> @time cholfact(A);
3434
0.013036 seconds (16 allocations: 7.630 MB)
3535

36-
julia> LinearAlgebra.CholeskyModule.cholRecursive!(copy(A), Val{:L});
36+
julia> GenericLinearAlgebra.CholeskyModule.cholRecursive!(copy(A), Val{:L});
3737

38-
julia> @time LinearAlgebra.CholeskyModule.cholRecursive!(copy(A), Val{:L});
38+
julia> @time GenericLinearAlgebra.CholeskyModule.cholRecursive!(copy(A), Val{:L});
3939
0.012098 seconds (7.00 k allocations: 7.934 MB)
4040
```

0 commit comments

Comments
 (0)