diff options
Diffstat (limited to 'contrib/kann/kautodiff.h')
-rw-r--r-- | contrib/kann/kautodiff.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/kann/kautodiff.h b/contrib/kann/kautodiff.h index 8c797205c..d7e713304 100644 --- a/contrib/kann/kautodiff.h +++ b/contrib/kann/kautodiff.h @@ -246,11 +246,11 @@ static inline int kad_len(const kad_node_t *p) /* calculate the size of p->x */ /* Additions by Rspamd */ void kad_sgemm_simple (int trans_A, int trans_B, int M, int N, int K, const float *A, const float *B, float *C); /** - * Calculate eugenvectors and eugenvalues + * Calculate eigenvectors and eigenvalues * @param N dimensions of A (must be NxN) - * @param A input matrix (part of it will be destroyed, so copy if needed), on finish the first `nwork` columns will have eugenvectors - * @param eugenvals eugenvalues, must be N elements vector + * @param A input matrix (part of it will be destroyed, so copy if needed), on finish the first `nwork` columns will have eigenvectors + * @param eigenvals eigenvalues, must be N elements vector */ -bool kad_ssyev_simple (int N, float *A, float *eugenvals); +bool kad_ssyev_simple (int N, float *A, float *eigenvals); #endif |