Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
N点あります。各ポイントにはX座標とY座標があります。
この点の重心のXとYを見つける必要があります。このタスクを実行するためのアルゴリズムを教えてください。
質量で加重平均を取るだけでは何か問題がありますか?
for each point n { totalmass += n.mass totalx += n.x*n.mass totaly += n.y*n.mass } center = (totalx/totalmass,totaly/totalmass)
必要に応じて寸法を追加します。