[go: up one dir, main page]

Menu

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

Download this file

7 lines (5 with data), 121 Bytes

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