Sébastien Crozet
|
d09aa50a31
|
Fix Vector::axpy for noncommutative cases (#648)
Fix Vector::axpy for noncommutative cases
|
2019-11-19 22:06:01 +01:00 |
Sébastien Crozet
|
f5163260cb
|
Cholupdate (#673)
Cholupdate
|
2019-11-17 15:17:25 +01:00 |
sebcrozet
|
246f72ebc0
|
Fix Cholesky for no-std platforms.
|
2019-11-17 13:10:50 +01:00 |
Andreas Longva
|
f03bd552c2
|
Generalize From<_> for MatrixSlice(Mut) to allow different strides
|
2019-11-05 22:52:49 +01:00 |
Andreas Longva
|
796db161d8
|
Implement From<&Matrix> for MatrixSlice
|
2019-11-05 22:52:49 +01:00 |
Nestor Demeure
|
7302defe56
|
finished cleaning
|
2019-11-03 21:24:44 +01:00 |
Nestor Demeure
|
46687b7cde
|
tests pass, needs cleanup
|
2019-11-03 18:48:04 +01:00 |
Nestor Demeure
|
6d1a00218f
|
found uneeded storagemut
|
2019-11-03 15:17:20 +01:00 |
Nestor Demeure
|
fd5cef6609
|
remove column is now working
|
2019-11-03 14:33:35 +01:00 |
Nestor Demeure
|
3123da5529
|
code cleaned
|
2019-11-02 19:04:07 +01:00 |
Nestor Demeure
|
3ae88127ee
|
rank update passed tests
|
2019-11-02 18:27:01 +01:00 |
Nestor Demeure
|
80d2efcb5d
|
added real constraint on sigma
|
2019-11-02 16:45:30 +01:00 |
Nestor Demeure
|
e49ecdc0a1
|
test is now correct
|
2019-11-02 16:36:23 +01:00 |
Nestor Demeure
|
bdccc81874
|
got test to compile
|
2019-11-02 15:56:59 +01:00 |
Nestor Demeure
|
1fe4ef956b
|
added test for update
|
2019-11-02 15:11:14 +01:00 |
Jakub Konka
|
d0fa79f6e1
|
Fix Vector::axpy for noncommutative cases
One example would be performing simple matrix multiplication
over a division algebra such as quaternions.
|
2019-09-05 15:12:38 +02:00 |
sebcrozet
|
94dd355cad
|
GEMM on empty matrices: properly take the beta parameter into account.
|
2019-09-01 21:08:06 +02:00 |
sebcrozet
|
49abb14e1b
|
Add test for empty matrix tr_mul.
|
2019-09-01 20:38:01 +02:00 |
sebcrozet
|
5cb4d5f83c
|
Add test for empty matrix multiplication.
|
2019-09-01 20:38:01 +02:00 |
sebcrozet
|
7a4daba91c
|
Matrix::transform_point: correctly take the normalization term into account.
Fix #640
|
2019-08-27 15:15:30 +02:00 |
Stefan Mesken
|
5392b936d1
|
Allow the removal of multiple rows/columns given an array of indices. #530
|
2019-04-08 23:44:49 +02:00 |
sebcrozet
|
4e81830775
|
Add tests for serialization of 2D transformations.
Fix #320.
|
2019-04-06 10:08:29 +02:00 |
sebcrozet
|
bb06701eff
|
Fix the return type of `convolve_same` to match the documentation.
|
2019-03-31 17:04:20 +02:00 |
sebcrozet
|
18b9f82042
|
Fix warnings.
|
2019-03-31 13:32:26 +02:00 |
sebcrozet
|
38ef0cbf7b
|
Merge branch 'dev' into complex
# Conflicts:
# src/base/ops.rs
# src/geometry/isometry.rs
# src/geometry/quaternion.rs
# src/geometry/quaternion_construction.rs
# src/geometry/rotation.rs
# src/geometry/similarity.rs
# src/geometry/transform.rs
# src/geometry/translation.rs
# src/geometry/unit_complex.rs
|
2019-03-31 10:48:59 +02:00 |
sebcrozet
|
f9995f1fcc
|
Fix tests.
|
2019-03-31 09:12:54 +02:00 |
sebcrozet
|
4ef4001836
|
Rename Real to RealField.
|
2019-03-25 11:21:41 +01:00 |
sebcrozet
|
5b28c39fa7
|
Rename Complex to ComplexField.
|
2019-03-25 11:19:36 +01:00 |
sebcrozet
|
3cbe60523a
|
2018 edition.
|
2019-03-23 14:33:47 +01:00 |
sebcrozet
|
921a05d523
|
Implement some BLAS opertaions involving adjoint.
|
2019-03-23 11:48:12 +01:00 |
sebcrozet
|
1001e8ee0f
|
Cleanup warnings and rename Schur -> RealSchur
|
2019-03-23 11:46:56 +01:00 |
sebcrozet
|
cb367a645d
|
Fix mint tests.
|
2019-03-19 22:53:21 +01:00 |
sebcrozet
|
3edef2f006
|
Decomposition results: return a real vector whenever applicable.
This includes singular values, eigenvalues of hermitian matrices, tridiagonalization and bidiagonalization diagonal and off-diagonal elements.
|
2019-03-19 14:22:59 +01:00 |
sebcrozet
|
2f0d95bdbb
|
Fix most tests.
|
2019-03-19 12:00:10 +01:00 |
sebcrozet
|
e4748c69ce
|
Start fixing SVD.
|
2019-03-18 11:23:19 +01:00 |
sebcrozet
|
010c009cff
|
Fix Schur decomposition.
|
2019-03-12 13:15:02 +01:00 |
Nathan
|
36feddb8c2
|
Moving functions into impl for Vector<N,D,S>
|
2019-03-02 15:00:40 -06:00 |
sebcrozet
|
77f048b6b9
|
WIP use Complex instead of Real whenever possible on the linalg module.
|
2019-03-02 19:33:49 +01:00 |
Nathan
|
28525bfc20
|
Restructured usage of convolves, added unit testing.
|
2019-02-24 19:53:09 -06:00 |
Nathan
|
a3d571ea6b
|
Merge remote-tracking branch 'upstream/master' into Implement_convolution_#520
|
2019-02-23 08:29:41 -06:00 |
Nathan
|
9f52019385
|
Fixing type traits based on feedback, `convolve_full` still broken
|
2019-02-18 19:01:18 -06:00 |
Nathan
|
b3c6492530
|
Moved test file to lingal folder, wrote tests based on github ticket request (scipy reference)
|
2019-02-10 13:40:32 -06:00 |
sebcrozet
|
fc24db8ff3
|
Merge branch 'master-public' into sparse
# Conflicts:
# Cargo.toml
# examples/matrix_construction.rs
# nalgebra-glm/src/constructors.rs
# nalgebra-glm/src/ext/matrix_clip_space.rs
# nalgebra-glm/src/ext/matrix_transform.rs
# nalgebra-glm/src/ext/mod.rs
# nalgebra-glm/src/ext/quaternion_common.rs
# nalgebra-glm/src/gtx/quaternion.rs
# nalgebra-glm/src/gtx/rotate_vector.rs
# nalgebra-glm/src/lib.rs
# nalgebra-glm/src/traits.rs
# nalgebra-lapack/src/cholesky.rs
# nalgebra-lapack/src/eigen.rs
# nalgebra-lapack/src/hessenberg.rs
# nalgebra-lapack/src/lu.rs
# nalgebra-lapack/src/qr.rs
# nalgebra-lapack/src/schur.rs
# nalgebra-lapack/src/svd.rs
# nalgebra-lapack/src/symmetric_eigen.rs
# rustfmt.toml
# src/base/array_storage.rs
# src/base/blas.rs
# src/base/cg.rs
# src/base/default_allocator.rs
# src/base/edition.rs
# src/base/iter.rs
# src/base/matrix.rs
# src/base/swizzle.rs
# src/base/vec_storage.rs
# src/geometry/mod.rs
# src/geometry/point_construction.rs
# src/geometry/quaternion.rs
# src/geometry/similarity.rs
# src/geometry/translation.rs
# src/geometry/unit_complex_construction.rs
# src/linalg/bidiagonal.rs
# src/linalg/cholesky.rs
# src/linalg/full_piv_lu.rs
# src/linalg/hessenberg.rs
# src/linalg/lu.rs
# src/linalg/permutation_sequence.rs
# src/linalg/qr.rs
# src/linalg/schur.rs
# src/linalg/svd.rs
# src/linalg/symmetric_eigen.rs
# src/linalg/symmetric_tridiagonal.rs
# tests/geometry/point.rs
# tests/geometry/quaternion.rs
# tests/lib.rs
# tests/linalg/eigen.rs
# tests/linalg/svd.rs
|
2019-02-03 12:53:41 +01:00 |
sebcrozet
|
381fdb642c
|
Remove useless extern crate in doc-tests.
|
2019-02-03 11:01:11 +01:00 |
sebcrozet
|
dcae274d2e
|
Fix rebase fallback + add missing docs.
|
2019-02-03 08:33:07 +01:00 |
sebcrozet
|
01d1f9d24b
|
Simplify the construction of DVector.
Fix #377.
|
2019-02-03 08:06:24 +01:00 |
Sébastien Crozet
|
570611a59b
|
Merge pull request #524 from shivshank/master
Add `push` method to Vector
|
2019-02-03 07:52:03 +01:00 |
Gedl
|
3fdcf5329d
|
Rename ::new_observer_frame to ::face_towards
|
2019-01-16 22:41:25 +01:00 |
shivshank
|
3055c289c0
|
Add `push` method to Vector
|
2019-01-09 21:38:58 -05:00 |
sebcrozet
|
82106caa9e
|
Merge branch 'dev' into master-public
# Conflicts:
# src/linalg/svd.rs
|
2018-12-29 14:39:32 +01:00 |