- 1、本文档共2页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
pythonnumpynp.arctan2()函数(批量计算反正切?)
defarctan2(x1,x2,*args,**kwargs):#realsignatureunknown;NOTE:unreliablyrestoredfrom__doc__
arctan2(x1,x2,/,out=None,*,where=True,casting=same_kind,order=K,dtype=None,subok=True[,signature,extobj])
Element-wisearctangentof``x1/x2``choosingthequadrantcorrectly.
元素⽅⾯的``X1/x2``正确地选择象限反正切。
Thequadrant(i.e.,branch)ischosensothat``arctan2(x1,x2)``is
thesignedangleinradiansbetweentherayendingattheoriginand
passingthroughthepoint(1,0),andtherayendingattheoriginand
passingthroughthepoint(`x2`,`x1`).passingthroughthepoint(`x2`,`x1`).(Notetherolereversal:the(Notetherolereversal:the
isthesecond.)ByIEEEconvention,thisfunctionisdefinedfor
`x2`=+/-0andforeitherorbothof`x1`and`x2`=+/-inf(see
Notesforspecificvalues).
选择象限(即分⽀),以使“arctan2(x1,x2)”是从原点结束并通过点(1,0)的射线与在结束点的射线之间的弧度的符号⾓原点并经过点(`x2`,`x1`)。
(请注意⾓⾊反转:“y”坐标是第⼀个函数参数,“x”坐标是第⼆个函数参数。)按照IEEE惯例,此函数定义为“x2”=+/-0并且对于“x1”和“x2”中的⼀个或两
个都=+/-inf(有关具体值,请参见注释)。
Thisfunctionisnotdefinedforcomplex-valuedarguments;forthe
so-calledargumentofcomplexvalues,use`angle`.
没有为复数值参数定义此函数;对于所谓的复数值参数,请使⽤“angle”。
Parameters
x1:array_like,real-valued
`y`-coordinates.y坐标。
x2:array_like,real-valued
`x`-coordinates.`x2`mustbebroadcastabletomatchtheshapeof
`x1`orviceversa.
x坐标。x2必须是可⼴播的,以匹配x1的形状,反之亦然。
out:ndarray,None,ortupleofndarrayandNone,optional
Alocationintowhichtheresultisstored.Ifprovided,itmusthave
ashapethattheinputsbroadcastto.Ifnotprovidedor`None`,
afreshly-allocatedarrayisreturned.Atuple(possibleonlyasa
keywordargument)musthavelengthequaltothenumberofoutputs.
文档评论(0)