loss function and support functions

This commit is contained in:
Thomas Schleicher 2023-09-21 12:23:59 +02:00
parent 0f7a0a5f11
commit f18a7714a2
4 changed files with 32 additions and 7 deletions

View file

@ -37,6 +37,7 @@ Matrix* apply(double (*function)(double), Matrix* matrix);
Matrix* scale(Matrix* matrix, double value);
Matrix* addScalar(Matrix* matrix, double value);
Matrix* transpose(Matrix* matrix);
double matrix_sum(Matrix* matrix);