Numpy 的 sqrt(~)
方法计算输入数组中每个值的平方根。
参数
1. a
| array_like
输入数组。
2. out
| Numpy array
| optional
您可以将计算结果放入 out
指定的数组中,而不是创建新数组。
3. where
| boolean
的array
| optional
标记为 False 的值将被忽略,即它们的原始值将未被初始化。如果指定了 out 参数,行为会略有不同 - 原始值将保持不变。
返回值
如果 a
是标量,则返回标量,否则返回 Numpy 数组。
例子
基本用法
x = np.array([1,4,25])
np.sqrt(x)
array([1., 2., 5.])
相关用法
- Python math sqrt()用法及代码示例
- Python NumPy squeeze方法用法及代码示例
- Python NumPy square方法用法及代码示例
- Python sqlite3.Connection.text_factory用法及代码示例
- Python sqlite3.Connection.enable_load_extension用法及代码示例
- Python sqlite3.Connection.iterdump用法及代码示例
- Python sqlite3.Cursor.executescript用法及代码示例
- Python sqlite3.Connection.create_collation用法及代码示例
- Python sqlite3.threadsafety用法及代码示例
- Python sqlite3.Connection.row_factory用法及代码示例
- Python sqlite3.complete_statement用法及代码示例
- Python sqlite3.Connection.create_function用法及代码示例
- Python sqlite3.Connection.create_aggregate用法及代码示例
- Python sqlite3.Cursor.connection用法及代码示例
- Python sqlite3.Cursor.executemany用法及代码示例
- Python sqlite3.Connection.backup用法及代码示例
- Python sqlite3.connect用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python scipy.signal.windows.tukey用法及代码示例
- Python scipy.stats.mood用法及代码示例
- Python str.isidentifier用法及代码示例
- Python sklearn.metrics.fbeta_score用法及代码示例
- Python scipy.fft.ihfftn用法及代码示例
- Python scipy.stats.normaltest用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | sqrt method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。