Count Elements
This function returns a numerical array built with the length of each input argument. Input arguments can be numerical or time series. Input arguments can also be string variables.
NOELS(...)
... |
List of input arguments. This function accepts input of class |
This function returns an array of class c()
.
out_NOELS=NOELS(c(1,2,3,4),c(5,6,7)) print(out_NOELS) #print c(4,3) out_NOELS=NOELS(TSERIES(c(1,2,3,4),START=c(2000,1),FREQ=1),c(5,6,7)) print(out_NOELS) #print c(4,3) out_NOELS=NOELS('aaa','bb') print(out_NOELS) #print c(3,2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.