[go: up one dir, main page]

Menu

[3bfb4b]: / source / R / isinf.R  Maximize  Restore  History

Download this file

7 lines (5 with data), 126 Bytes

1
2
3
4
5
6
## Function written to match MATLAB function
## Author: Andrew Hooker
isinf <- function(arr){
return(is.infinite(arr))
}