Ask Your Question
0

Simple ReLU plot

asked 1 year ago

ramesh1600 gravatar image

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)

Preview: (hide)

Comments

sage: max_symbolic?

FrédéricC gravatar imageFrédéricC ( 1 year ago )

thanks. max_symbolic works.

ramesh1600 gravatar imageramesh1600 ( 1 year ago )

1 Answer

Sort by » oldest newest most voted
0

answered 1 year ago

Cyrille gravatar image

updated 1 year ago

You can try

   f(x) = max_symbolic(x,0);
   plot(f(x), -2, 2)
Preview: (hide)
link

Comments

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 ?

ramesh1600 gravatar imageramesh1600 ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 207 times

Last updated: Mar 15 '24