https://github.com/cran/pracma
Raw File
Tip revision: 6bedfa382c05ccbdda30ab12438b32fd9ba13876 authored by HwB on 12 December 2012, 00:00:00 UTC
version 1.3.3
Tip revision: 6bedfa3
find.R
##
##  f i n d . R  Finds indices of nonzero elements
##


finds <- function(v) 
    which( if (is.logical(v)) v else v != 0 )
back to top