Simple ReLU plot
I am trying to plot this simple ReLU function max(0,x).
But the line is struck at y=0. Can somebody help ?
Here is my code:
plot(max(0,x), -2, 2)
I am trying to plot this simple ReLU function max(0,x).
But the line is struck at y=0. Can somebody help ?
Here is my code:
plot(max(0,x), -2, 2)
You can try
f(x) = max_symbolic(x,0);
plot(f(x), -2, 2)
This worked. Thank you very much. I went and read the max_symbolic documentation, I could not understand why max does not work, but the max_symbolic resolved my problem. Is there a simpler explanation for why python max does not work in the plotting ?
Asked: 1 year ago
Seen: 207 times
Last updated: Mar 15 '24
sage: max_symbolic?
thanks. max_symbolic works.