We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6553041 + dd92104 commit 9e7c90bCopy full SHA for 9e7c90b
algorithms/machine_learning/Activation Functions/ReLU.m
@@ -0,0 +1,11 @@
1
+
2
+%ReLU function
3
4
+x = -10:0.01:10;
5
+y = x;
6
+y(x<0) = 0;
7
+plot(x,y);
8
+xlabel('x');
9
+ylabel('y');
10
+grid on
11
0 commit comments