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.
最小値と最大値の3つの範囲を含むベクトルがあります。
low<-1,2,3 high<-2,3,4
1〜2、2〜3、および3〜4の範囲を表します
各範囲の中点を含む3番目のベクトルを返す必要があります。
mid<-1.5,2.5,3.5
これを行う簡単な方法はありますか?
あなたが実際にlow <- c(1, 2, 3)などを持っていると仮定すると、次のようになります。
low <- c(1, 2, 3)
mid <- (low + high)/2