Plot a graph
Title
Question
How can we use "degree range" instead of "numeric numbers" while plotting a graph?
Python Using-the-plot-command-interactively 05-06 min 30-40 sec
Answers:
Please elaborate.
There is way to use degree range (list of angles) via below command
x=linspace(0,180,7)
it will give following
array([ 0., 30., 60., 90., 120., 150., 180.])
Login to add comment