pythonsin怎么表示_Python numpy.sin()用法及代码示例

numpy.sin(x [,out])= ufunc'sin'):此数学函数可帮助用户计算所有x(作为数组元素)的三角正弦值。

参数:

array :[array_like]elements are in radians.

2pi Radians = 36o degrees

返回:

An array with trignometric sine of

x for all x i.e. array elements

代码1:工作

# Python program explaining

# sin() function

import numpy as np

import math

in_array = [0, math.pi / 2, np.pi / 3, np.pi]

print ("Input array : \n", in_array)

Sin_Values = np.sin(in_array)

print ("\nSine values : \n", Sin_Values)

输出:

Input array :

[0, 1.5707963267948966, 1.0471975511965976, 3.141592653589793]

Sine values :

[ 0.00000000e+00 1.00000000e+00 8.66025404e-01 1.22464680e-16]

代码2:图形表示

# Python program showing

# Graphical representat

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值