@@ -24,14 +24,9 @@ pub trait Solveh_: Sized {
24
24
/// LAPACK correspondance
25
25
/// ----------------------
26
26
///
27
- /// | f32 | f64 | c32 | c64 |
28
- /// |:---------|:---------|:---------|:---------|
29
- /// | [ssytrf] | [dsytrf] | [chetrf] | [zhetrf] |
30
- ///
31
- /// [ssytrf]: https://netlib.org/lapack/explore-html/d0/d14/group__real_s_ycomputational_ga12d2e56511cf7df066712c61d9acec45.html
32
- /// [dsytrf]: https://netlib.org/lapack/explore-html/d3/db6/group__double_s_ycomputational_gad91bde1212277b3e909eb6af7f64858a.html
33
- /// [chetrf]: https://netlib.org/lapack/explore-html/d4/d74/group__complex_h_ecomputational_ga081dd1908e46d064c2bf0a1f6b664b86.html
34
- /// [zhetrf]: https://netlib.org/lapack/explore-html/d3/d80/group__complex16_h_ecomputational_gadc84a5c9818ee12ea19944623131bd52.html
27
+ /// | f32 | f64 | c32 | c64 |
28
+ /// |:-------|:-------|:-------|:-------|
29
+ /// | ssytrf | dsytrf | chetrf | zhetrf |
35
30
///
36
31
fn bk ( l : MatrixLayout , uplo : UPLO , a : & mut [ Self ] ) -> Result < Pivot > ;
37
32
@@ -40,14 +35,9 @@ pub trait Solveh_: Sized {
40
35
/// LAPACK correspondance
41
36
/// ----------------------
42
37
///
43
- /// | f32 | f64 | c32 | c64 |
44
- /// |:---------|:---------|:---------|:---------|
45
- /// | [ssytri] | [dsytri] | [chetri] | [zhetri] |
46
- ///
47
- /// [ssytri]: https://netlib.org/lapack/explore-html/d0/d14/group__real_s_ycomputational_gaef378ec0761234aac417f487b43b7a8b.html
48
- /// [dsytri]: https://netlib.org/lapack/explore-html/d3/db6/group__double_s_ycomputational_ga75e09b4299b7955044a3bbf84c46b593.html
49
- /// [chetri]: https://netlib.org/lapack/explore-html/d4/d74/group__complex_h_ecomputational_gad87a6a1ac131c5635d47ac440e672bcf.html
50
- /// [zhetri]: https://netlib.org/lapack/explore-html/d3/d80/group__complex16_h_ecomputational_ga4d9cfa0653de400029b8051996ce1e96.html
38
+ /// | f32 | f64 | c32 | c64 |
39
+ /// |:-------|:-------|:-------|:-------|
40
+ /// | ssytri | dsytri | chetri | zhetri |
51
41
///
52
42
fn invh ( l : MatrixLayout , uplo : UPLO , a : & mut [ Self ] , ipiv : & Pivot ) -> Result < ( ) > ;
53
43
@@ -56,14 +46,9 @@ pub trait Solveh_: Sized {
56
46
/// LAPACK correspondance
57
47
/// ----------------------
58
48
///
59
- /// | f32 | f64 | c32 | c64 |
60
- /// |:---------|:---------|:---------|:---------|
61
- /// | [ssytrs] | [dsytrs] | [chetrs] | [zhetrs] |
62
- ///
63
- /// [ssytrs]: https://netlib.org/lapack/explore-html/d0/d14/group__real_s_ycomputational_gae20133a1119b69a7319783ff982c8c62.html
64
- /// [dsytrs]: https://netlib.org/lapack/explore-html/d3/db6/group__double_s_ycomputational_ga6a223e61effac7232e98b422f147f032.html
65
- /// [chetrs]: https://netlib.org/lapack/explore-html/d4/d74/group__complex_h_ecomputational_ga6f9d8da222ffaa7b7535efc922faa1dc.html
66
- /// [zhetrs]: https://netlib.org/lapack/explore-html/d3/d80/group__complex16_h_ecomputational_gacf697e3bb72c5fd88cd90972999401dd.html
49
+ /// | f32 | f64 | c32 | c64 |
50
+ /// |:-------|:-------|:-------|:-------|
51
+ /// | ssytrs | dsytrs | chetrs | zhetrs |
67
52
///
68
53
fn solveh ( l : MatrixLayout , uplo : UPLO , a : & [ Self ] , ipiv : & Pivot , b : & mut [ Self ] ) -> Result < ( ) > ;
69
54
}
0 commit comments