np.square用法
时间: 2023-12-05 11:04:56 浏览: 100
least_square_method_least_square_method_jupyternotebook_最小二乘法_
np.square是numpy库中的一个函数,用来计算给定数组中每个元素的平方值。
语法如下:
```python
np.square(arr)
```
其中,arr是要进行平方计算的数组。
示例代码:
```python
import numpy as np
arr = np.array([2, 4, 6, 8])
result = np.square(arr)
print(result)
```
输出结果为:
```
[ 4 16 36 64]
```
以上代码将数组中每个元素平方并输出。
阅读全文