Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for an Lapack module #1281

Closed
wants to merge 10 commits into from
17 changes: 14 additions & 3 deletions base/export.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export
PCRE,
FFTW,
DSP,
Lapack,
BLAS,

# Types
AbstractMatrix,
Expand Down Expand Up @@ -80,6 +82,7 @@ export
SubDArray,
SubOrDArray,
SubString,
SymTridiagonal,
TransformedString,
Tridiagonal,
VecOrMat,
Expand All @@ -90,6 +93,7 @@ export
Zip,
Stat,
Factorization,
BunchKaufman,
CholeskyDense,
LUDense,
LUTridiagonal,
Expand Down Expand Up @@ -618,7 +622,8 @@ export
# linear algebra
axpy,
chol,
chol!,
chold,
chold!,
cond,
cross,
ctranspose,
Expand All @@ -638,15 +643,21 @@ export
istril,
istriu,
kron,
ldlt,
ldltd!,
ldltd,
linreg,
lu,
lu!,
lud,
lud!,
matmul2x2,
matmul3x3,
norm,
qr,
qrd!,
qrd,
qrp,
qrpd!,
qrpd,
randsym,
rank,
rref,
Expand Down
Loading