leaky relu of a matrix
matrix
Matrix leakyRelu(Matrix matrix) { return matrix.performFunction((x) => x > 0 ? x : 0.01 * x); }