python中(TypeError: only size-1 arrays can be converted to Python scalars)


这里写自定义目录标题

  • Python中的math和numpy
    • 源程序
    • 修改后
    • 错误原因

Python中的math和numpy 错误描述:TypeError: only size-1 arrays can be converted to Python scalars
源程序 python中(TypeError: only size-1 arrays can be converted to Python scalars)
文章图片

修改后 python中(TypeError: only size-1 arrays can be converted to Python scalars)
文章图片

错误原因 【python中(TypeError: only size-1 arrays can be converted to Python scalars)】numpy包中也含有sin(),pi需要使用numpy包中函数;
这个mu在使用了numpy里的函数arange之后生成的是numpy的ndarray对象,也就是n维数组。 而类型为array的里面数据要处理需要使用numpy里的函数。

    推荐阅读