np.copysign

Python math.copysign()方法 (Python math.copysign() method)

math.copysign() method is a library method of math module, it is used to get a number with the sign of another number, it accepts two numbers (either integers or floats) and returns a float value of the first number with the sign of the second number.

math.copysign()方法数学模块的库方法,用于获取带有另一个数字的符号的数字,它接受两个数字(整数或浮点数)并返回带有符号的第一个数字的浮点值第二个数字。

Note: If anything is passed except the number, the method returns a type error, "TypeError: a float is required".

注意:如果传递了除数字以外的任何内容,则该方法将返回类型错误“ TypeError:需要浮点数”。

Syntax of math.copysign() method:

math.copysign()方法的语法:

    math.copysign(x, y)

Parameter(s): x, y – two numbers, x to be converted and y whose sign is required.

参数: x,y –两个数字, x是要转换的, y是需要符号的。

Return value: float – it returns a float value, that is x with the sign of y.

返回值: float-它返回一个浮点值,即x和y的符号。

Example:

例:

    Input:
a = 10
b = -2
# function call
print(math.copysign(a, b))
Output:
-10.0

Python代码演示math.copysign()方法的示例 (Python code to demonstrate example of math.copysign() method)

# Python code demonstrate example of
# math.copysign() method
import math
# numbers
a = 10
b = -2
print("copysign(a,b): ", math.copysign(a,b))
a = -10
b = -2
print("copysign(a,b): ", math.copysign(a,b))
a = 10.23
b = -2
print("copysign(a,b): ", math.copysign(a,b))
a = -10.23
b = -2.34
print("copysign(a,b): ", math.copysign(a,b))
a = -10
b = 2
print("copysign(a,b): ", math.copysign(a,b))

Output

输出量

copysign(a,b):  -10.0
copysign(a,b):  -10.0
copysign(a,b):  -10.23
copysign(a,b):  -10.23
copysign(a,b):  10.0

翻译自: https://www.includehelp.com/python/math-copysign-method-with-example.aspx

np.copysign

np.copysign_带有Python示例的math.copysign()方法相关推荐

  1. np.isfinite_带有Python示例的math.isfinite()方法

    np.isfinite Python math.isfinite()方法 (Python math.isfinite() method) math.isfinite() method is a lib ...

  2. np.radians_带有Python示例的math.radians()方法

    np.radians Python math.radians()方法 (Python math.radians() method) math.radians() method is a library ...

  3. python中 math.isfinite返回值为false_带有Python示例的math.isfinite()方法

    Python math.isfinite() 方法 math.isfinite()方法是数学模块的一种库方法,用于检查给定数字是否为非有限数,它接受数字(整数/浮点数,有限,无限或NaN),如果数字既 ...

  4. python中math.ceil是什么意思_带有Python示例的math.ceil()方法

    Python math.ceil() 方法 math.ceil()方法是数学模块的库方法,用于获取给定数字的ceil值,它接受数字/数字表达式并返回大于该数字的最小整数值. 注意:如果数字是整数值,则 ...

  5. math求旋转角度 python_带有Python示例的math.degrees()方法

    Python math.degrees() 方法 math.degrees()方法是数学模块的一种库方法,用于将角度值从弧度转换为度,它接受一个数字并返回以度为单位的角度值. 注意: math.deg ...

  6. python教程cos_带有Python示例的math.cos()方法

    Python math.cos() 方法 math.cos()方法是数学模块的库方法,用于获取弧度数的余弦值,它接受一个数字,返回给定弧度的余弦值. 注意: math.cos()方法接受的唯一的号码, ...

  7. python math.sinh_带有Python示例的math.sinh()方法

    Python math.sinh() 方法 math.sinh()方法是数学模块的一种库方法,用于获取以弧度为单位的给定数字的双曲正弦值,它接受一个数字并返回双曲正弦值. 注意: math.sinh( ...

  8. math.trunc_带有Python示例的math.trunc()方法

    math.trunc Python math.trunc()方法 (Python math.trunc() method) math.trunc() method is a library metho ...

  9. factorial函数_带有Python示例的math.factorial()方法

    factorial函数 Python math.factorial()方法 (Python math.factorial() method) math.factorial() method is a ...

最新文章

  1. 关于ViewGroup中requestDisallowInterceptTouchEvent的用法
  2. mil跟踪算法matlab,几种目标跟踪算法性能比较
  3. pip更换镜像源_Ubuntu20.04LTS更换软件源镜像
  4. python pandas stack和unstack函数
  5. python模型训练 warm_start_08-06 细分构建机器学习应用程序的流程-训练模型
  6. ANN中批归一化的意义和在SNN中的转化
  7. 金额大小写转换(4)
  8. 董淳光SQLITE3使用总结-转
  9. 高并发系统的限流算法
  10. Python从入门到入土-基础知识准备
  11. 开源磁盘加密软件VeraCrypt教程
  12. mac android 手机连接打印机,为什么苹果电脑连接打印机打不出来怎么办
  13. java程序实现短信发送(可调用免费短信接口)
  14. ambiguous column name 错误
  15. 数据库原理与应用教程(何玉洁 第四版)第七章课后题
  16. python js反混淆 eval(function(p,a,c,k,e,d){
  17. 2021中国IC封装基板市场现状及未来发展趋势
  18. 人脸识别实名认证在景区门禁系统中的应用
  19. Apache Kylin
  20. 【目标规划】暑假计划

热门文章

  1. python123测验9程序题答案_Django ORM 练习题及答案_python_脚本之家
  2. 线性分组码的最小汉明距为6_第二章 线性代数
  3. sp_addlinkedserver oracle,sp_addlinkedserver使用方法
  4. mip-link 组件功能升级说明
  5. Problem D: 删出多余的空格
  6. postman里测试文件上传(MultipartFile)
  7. 马凯军201771010116《面向对象程序设计(java)》第二周学习总结
  8. SharePoint CAML In Action——Part I
  9. android decorView详解
  10. 如何对手机使用adb