phyton3-matlablib
Title
Question
plot (sin(x)*sin(x))/x
in this how to define 'x' value?
Python-3.4.3 Using-plot-command-interactively 08-09 min 10-20 sec
Answers:
first define x with values, you can get list of values via linspace function
x=linspace(0,100,10)
Above command save 10s of values starting range from 0 to 100
Login to add comment