File: rad2degree.R

package info (click to toggle)
r-cran-calibrate 1.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 628 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 69 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
rad2degree <-
function(x) {
  ang <- x*180/pi
  return(ang)
}