카타 7급 Speed Control

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:41 판 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 C[ | ]

2 Kotlin[ | ]

3 R[ | ]

gps <- function(s, x) {
  if( length(x) < 2 ) return(0)
  floor( max(diff(x))*3600/s )
}
gps <- function(s, x) {
  if (length(x) <= 1) 0 else floor(max(3600 * diff(x) / s))
}
gps <- function(s, x) {
  if(length(x) <= 1) return (0)
  return(floor(max(((c(x[2:length(x)],0) - x) * 3600) / s)))
}
gps <- function(s, x) {
  max(floor((3600 * (x[-1] - x)[1:length(x)-1]) / s), 0)
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}