mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 13:10:08 +00:00
18 lines
668 B
C
18 lines
668 B
C
|
#pragma once
|
||
|
|
||
|
int singular_value_decomposition (double *A,
|
||
|
int nrows,
|
||
|
int ncols,
|
||
|
double *U,
|
||
|
double *S,
|
||
|
double *V);
|
||
|
|
||
|
void singular_value_decomposition_solve (double *U,
|
||
|
double *S,
|
||
|
double *V,
|
||
|
int nrows,
|
||
|
int ncols,
|
||
|
double *B,
|
||
|
double *x);
|
||
|
|