https://github.com/cran/pracma
Raw File
Tip revision: c1688b374d201c13fb40b4dda2d2a89e34b94ec6 authored by Hans W. Borchers on 23 January 2021, 09:10:02 UTC
version 2.3.3
Tip revision: c1688b3
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