第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將 numpy 數(shù)組轉(zhuǎn)換為整數(shù)數(shù)組

將 numpy 數(shù)組轉(zhuǎn)換為整數(shù)數(shù)組

qq_遁去的一_1 2023-12-12 21:14:07
我有數(shù)組length = 7angle = 30  x = [1.21660254e+02, 1.71660254e+02, 2.38660254e+02, 2.05660254e+02]我試過這個P2x =  int(np.round(x + length * math.cos(math.radians(-angle))))給我錯誤TypeError: only size-1 arrays can be converted to Python scalars
查看完整描述

1 回答

?
偶然的你

TA貢獻1841條經(jīng)驗 獲得超3個贊

math如果您已經(jīng)在使用,則不需要該模塊numpy


import numpy as np


length = 7

angle = 30 

x = [1.21660254e+02, 1.71660254e+02, 2.38660254e+02, 2.05660254e+02]


xP2x = np.round(np.array(x) + length * np.cos(np.radians(-angle))).astype(int)

print(xP2x)

出去:


[128 178 245 212]


查看完整回答
反對 回復 2023-12-12
  • 1 回答
  • 0 關(guān)注
  • 177 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號