sqrt函数

import numpy as np
B = np.arange(3)
print (B)
print (np.sqrt(B)) #求平方根

原文地址:https://www.cnblogs.com/hankleo/p/9162271.html