1 Star 0 Fork 0

fanyangchu/PythonCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
numpy.py 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
shreyash010 提交于 2020-10-01 17:41 . Create numpy.py
import numpy as np
#to check if shape are equal and find there power
def get_array(x, y):
a = np.shape(x)
b = np.shape(y)
if a == b:
np_pow_array = x ** y
print("Array of powers without using np.power: ", np_pow_array)
print("Array of powers using np.power: ", np.power(x, y))
else:
print("Error : Shape of the given arrays is not equal.")
#0d array
np_arr1 = np.array(3)
np_arr2 = np.array(4)
#1d array
np_arr3 = np.array([1, 2])
np_arr4 = np.array([3, 4])
#2d array
np_arr5 = np.array([[1,2], [3,4]])
np_arr6 = np.array([[5,6], [7,8]])
get_array(np_arr1, np_arr2)
print()
get_array(np_arr3, np_arr4)
print()
get_array(np_arr5, np_arr6)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanych/pythoncode.git
git@gitee.com:fanych/pythoncode.git
fanych
pythoncode
PythonCode
master

搜索帮助