Вопрос

Title says it all, I somehow can not find that function. Obviously it's inside the Numpy package (numpy.core.umath.deg2rad) and I've tried importing it but to no avail. Anyone care to chime in?

  • import numpy as np - np.deg2rad doesn't even show up
  • from numpy import* - umath.deg2rad shows up, but it raises an error, ''name 'umath' is not defined''
Это было полезно?

Решение

from numpy.core.umath import deg2rad
# then
deg2rad(...)

Or

import numpy as np
np.core.umath.deg2rad(...)
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top