Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static Matrix* multiply(Matrix* A, Matrix* B);
// multiplies $A and $B (ordering: AB) and places values into $into
static void multiplyInto(Matrix* A, Matrix* B, Matrix* into);

// element-wise multiplcation
// element-wise multiplication
static Matrix* hadamard(Matrix* A, Matrix* B);

// places values of hadamard product of $A and $B into $into
Expand Down Expand Up @@ -390,4 +390,4 @@ void destroyMatrix(Matrix* matrix){
free(matrix);
}

#endif
#endif