Ask Your Question

Revision history [back]

How to fix up positional arguments error?

On Jupyter TypeError: norm() takes 1 positional argument but 3 were given I have this code. plot((norm(x,0,1),0.0625(3+x)^2),(x,-2,2),ymin=0) It works but as soon as I change it to plot((norm(x,0,1),0.0625(3+x)^2),(x,-3,-1),ymin=0) To improve accuracy it stops working.

How to fix up positional arguments error?

On Jupyter Jupyter

TypeError: norm() takes 1 positional argument but 3 were given

I have this code. plot((norm(x,0,1),0.0625(3+x)^2),(x,-2,2),ymin=0) code.

plot((norm(x, 0, 1), 0.0625*(3+x)^2), (x, -2, 2), ymin=0)

It works but as soon as I change it to

plot((norm(x,0,1),0.0625
(3+x)^2),(x,-3,-1),ymin=0) To
plot((norm(x, 0, 1), 0.0625*(3+x)^2), (x, -3, -1), ymin=0)

to improve accuracy accuracy, it stops working. working.