在 Python 中将一个 Legendre 系列添加到另一个 Legendre 系列
2024-08-18
35
步骤
import numpy as np from numpy.polynomial import laguerre as L
c1 = np.array([2,3,4]) c2 = np.array([4,3,2])
print("Array1...\n",c1) print("\nArray2...\n",c2)
print("\nArray1 datatype...\n",c1.dtype) print("\nArray2 datatype...\n",c2.dtype)
print("\nDimensions of Array1...\n",c1.ndim) print("\nDimensions of Array2...\n",c2.ndim)
print("\nShape of Array1...\n",c1.shape) print("\nShape of Array2...\n",c2.shape)
print("\nResult (sum)....\n",L.legadd(c1, c2))
例
输出
Array1... [2 3 4] Array2... [4 3 2] Array1 datatype... int64 Array2 datatype... int64 Dimensions of Array1... 1 Dimensions of Array2... 1 Shape of Array1... (3,) Shape of Array2... (3,) Result (sum).... [6. 6. 6.]更新于:3个月前
赞一波!2
相关文章
- 【说站】python中random模块求随机数
- 【说站】python中figure()函数画两张图
- 【说站】python中subplot函数怎么画图?
- 【说站】python异常时的语句处理
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
- 【说站】python整数的进制转换
- 【说站】python如何使用send唤醒
- 【说站】python gevent的原理分析
- 【说站】python生成器创建的方法整理
- 【说站】本月编程语言排行:C语言稳居榜首,python持续上升
- 【说站】python密码生成器的使用
- 【说站】python模块如何传入参数
- 【说站】python模块的介绍和导入
- 【说站】招聘月:Python数据分析岗位迎来机遇
- 【说站】python调用函数的注意点
文章评论
评论问答