python弧度角度转换程序_python 弧度与角度互转实例

本文介绍Python中弧度与角度的转换方法,通过示例代码详细展示了如何进行转换,并提及MATLAB中degtorad函数的相关知识。
摘要由CSDN通过智能技术生成

我就废话不多说了,还是直接看代码吧!

import math

def deal(yaw):

if(yaw<0):

print(-(abs(yaw)/math.pi)*180)

print(math.degrees(yaw))

else:

print((abs(yaw)/math.pi)*180)

print(math.degrees(yaw))

yaw=math.pi/6

deal(yaw)

yaw=-math.pi/3

deal(yaw)

输出

30.0

29.999999999999996

-60.0

-59.99999999999999

补充知识:MATLAB中角度转换成弧度函数――degtorad

degtorad

Convert angles from degrees to radians

将角度从度数转换为弧度

Syntax:angleInRadians = degtorad(angleInDegrees)

语法:弧度 = degtorad(角度)

Description

angleInRadians = degtorad(angleInDegrees) converts angle units from degrees to radians. This is both an angle conversion function and a distance conversion function, since arc length can be a measure of distance in either radians or degrees, provided that the radius is known.

描述:angleInRadians = degtorad(angleInDegrees)将角度单位从度数转换为弧度。这是角度转换函数和距离转换函数,因为弧长可以是弧度或度数的距离的度量,只要半径是已知的。

Examples

Show that there are 2π radians in a full circle:

2*pi - degtorad(360)

ans =

0

例子

显示整个圆圈内有2π弧度:

以上这篇python 弧度与角度互转实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持云海天教程。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值