在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:JuliaLinearAlgebra/GenericLinearAlgebra.jl开源软件地址:https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl开源编程语言:Julia 100.0%开源软件介绍:GenericLinearAlgebra.jlA fresh approach to numerical linear algebra in JuliaThe purpose of this package is partly to extend linear algebra functionality in base to cover generic element types, e.g. 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 which will make it possible to compute julia> using GenericLinearAlgebra
julia> A = big.(randn(10,10));
julia> cond(A)
1.266829904721752610946505846921202851190952179974780602509001252204638657237828e+03
julia> norm(A)
6.370285271475041598951769618847832429030388948627697440637424244721679386430589 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 julia> using GenericLinearAlgebra
julia> A = randn(1000,1000); A = A'A;
julia> cholesky(A);
julia> @time cholesky(A);
0.013036 seconds (16 allocations: 7.630 MB)
julia> GenericLinearAlgebra.cholRecursive!(copy(A), Val{:L});
julia> @time GenericLinearAlgebra.cholRecursive!(copy(A), Val{:L});
0.012098 seconds (7.00 k allocations: 7.934 MB) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论