ReLU function in CNN

I want to know how the ReLU activation function works in a 3x3 matrix? Does it applies ReLU to each element of the 3x3 matrix like the example shown below or does it do something different?
1

Its right, it applies relu element-wise.

1 Like