Sébastien Crozet
e32f4ee16f
cargo fmt + tests
2022-10-30 17:22:08 +01:00
Marc Haubenstock
9c8b5f0f38
added a function to get all the real elements
2022-10-26 16:26:06 +02:00
Marc Haubenstock
aa89cda0cd
testing complex eigenvalues
2022-10-23 20:36:06 +02:00
Marc Haubenstock
4a1fd605e4
fixed iteration
2022-10-23 19:23:13 +02:00
Marc Haubenstock
9acaa35e33
fixed iteration
2022-10-22 21:26:09 +02:00
Marc Haubenstock
81f1a6d87e
review conjugate indexing
2022-10-16 12:03:08 +02:00
Marc Haubenstock
01c5b9ea56
switch back to Dim + zero_generic
2022-10-16 11:55:07 +02:00
Marc Haubenstock
ee3f84abba
first version
2022-10-16 11:52:32 +02:00
Marc Haubenstock
8ee68afaac
commented out so that code compiles
2022-10-15 19:17:05 +02:00
Marc Haubenstock
b732b75a77
added panic so that the code compiles
2022-10-15 19:10:31 +02:00
Marc Haubenstock
d61f9e29ba
working on issue 1106
2022-10-15 16:49:13 +02:00
Sébastien Crozet
3d52327f82
nalgebra-lapack: merge both Eigen decomposition function into a single one.
2022-10-09 16:26:26 +02:00
Marc Haubenstock
a0412c39f2
formatting
2022-09-14 19:07:38 +02:00
Marc Haubenstock
c62801114b
fixed formatting
2022-09-14 18:15:16 +02:00
Marc Haubenstock
743eaa4747
renaming method
2022-09-13 19:09:27 +02:00
Marc Haubenstock
aafb713848
removed whitespace
2022-05-03 19:11:56 +02:00
Marc Haubenstock
71ef287fea
removed return statements
2022-05-02 22:49:07 +02:00
Marc Haubenstock
9f8cfa207a
enabled complex eigenvalues for lapack
2022-05-02 21:55:51 +02:00
Sébastien Crozet
e8b9c40123
Release v0.30.0
2022-01-02 15:30:15 +01:00
Sébastien Crozet
38ac9a2f9a
Fix nalgebra-lapack.
2021-08-03 17:39:45 +02:00
Sébastien Crozet
47e226d0e0
Fix nalgebra-lapack
2021-08-03 10:48:59 +02:00
Sébastien Crozet
8c6ebf2757
Implement the single-allocator-trait approach.
2021-08-02 18:41:46 +02:00
Violeta Hernández
10b5dc9bb6
Many miscellaneous improvements throughout
2021-07-17 20:19:20 -05:00
Violeta Hernández
4bd13a509a
Fix botched Search + Replace
2021-07-17 13:58:34 -05:00
Violeta Hernández
c01d591478
We have reached compilation!
2021-07-17 13:01:03 -05:00
Malte Tammena
9fb963017f
Simplify default `#[must_use]` annotation
2021-06-07 16:34:03 +02:00
Malte Tammena
42a2c74571
Finish initial must_use annotations
2021-06-06 15:28:37 +02:00
Crozet Sébastien
73cc9882b2
Fix compilation of nalgebra-lapack
2021-04-12 10:35:35 +02:00
Crozet Sébastien
24d546d3b6
Rename generic parameter N -> T
2021-04-11 13:57:54 +02:00
Crozet Sébastien
5225456883
Fix nalgebra-lapack.
...
Since nalgebra-lapack can only be used with f32 and f64, it is OK to just call `.assume_init()`.
2021-02-25 15:07:15 +01:00
Crozet Sébastien
e852df6124
Add sections for most Matrix methods.
2020-11-15 16:57:49 +01:00
sebcrozet
bbb3be512e
Run cargo fmt.
2020-04-05 18:49:48 +02:00
sebcrozet
f8cd26cfa9
Replace alga by simba.
2020-03-21 12:16:46 +01:00
Avi Weinstock
774f4da3e2
Add `Clone` to `Scalar`, providing a default implementation of `inlined_clone`. Change `Scalar + Clone` bounds to just `Scalar`.
2020-03-02 12:45:37 +01:00
Avi Weinstock
52aac8b975
Add inlined_clone to Scalar, and relax bounds from `Scalar + Copy` to `Scalar + Clone` nearly everywhere.
...
The various nalgebra-lapack FooScalars are still Copy because they make use of uninitialized memory.
nalgebgra-glm Number still uses Copy because upstream `approx` requires it.
2020-03-02 12:45:37 +01:00
Avi Weinstock
bd7dd6e345
Add Scalar + Copy bounds in nalgebra-lapack.
...
```bash
export RELEVANT_SOURCEFILES="$(find nalgebra-lapack -name '*.rs')"
for f in $RELEVANT_SOURCEFILES; do sed -i 's/N\([0-9]\?\): *Scalar,/N\1: Scalar + Copy,/' $f; done
for f in $RELEVANT_SOURCEFILES; do sed -i 's/N\([0-9]\?\): *Scalar>/N\1: Scalar + Copy>/' $f; done
for f in $RELEVANT_SOURCEFILES; do sed -i 's/\([A-Z]*Scalar\): Scalar {/\1: Scalar + Copy {/' $f; done
for f in $RELEVANT_SOURCEFILES; do sed -i 's/SVDScalar<R: DimMin<C>, C: Dim>: Scalar/SVDScalar<R: DimMin<C>, C: Dim>: Scalar + Copy/' $f; done
```
2020-03-02 12:45:37 +01:00
sebcrozet
4ef4001836
Rename Real to RealField.
2019-03-25 11:21:41 +01:00
sebcrozet
3cbe60523a
2018 edition.
2019-03-23 14:33:47 +01:00
adamnemecek
975d72f070
Replace explicit types with Self where possible.
2019-02-16 22:29:41 +01:00
sebcrozet
14ad10a7e0
Add rustfmt.toml and run it.
2018-10-27 15:00:18 +02:00
Bruce Mitchener
175c41ed3a
Typo fixes.
2018-09-24 21:15:07 +02:00
sebcrozet
b272f3ba76
Fix compilation errors when the serde-serialize feature is enabled.
...
Fix #369 .
2018-09-13 07:49:38 +02:00
sebcrozet
8dcb4a3227
Fix compilation errors.
...
The num-complex dependency of lapack will have to be updated for this to pass the CI.
2018-05-26 22:07:57 +02:00
Sébastien Crozet
662cc9cd7f
Run rust fmt.
2018-02-03 13:59:05 +01:00
Sébastien Crozet
3e349b80cf
Implement serde traits for all linalg structs.
2017-08-15 19:07:18 +02:00
Sébastien Crozet
b84c7e10df
nalgebra-lapack: add doc + fix warnings.
2017-08-15 19:07:18 +02:00
Sébastien Crozet
89e8b49759
nalgebra-lapack: add computation of complex eigenvalues.
...
Also renames RealEigensystem -> Eigen
2017-08-15 19:07:18 +02:00
Sébastien Crozet
02767fa894
Add nalgebra-lapack as a crate on this workspace.
2017-08-15 19:07:18 +02:00