On Thu, 27 Aug 2020, Alecos Papadopoulos wrote:
When used with a matrix, the resample() function takes two /optional
/arguments.
Is it correct to write (for some matrix X)
matrix bootsample = resample(X,,m)
namely, "skip" in this way the first optional argument, while at the same
time specifying that the length of the bootstrap sample should be smaller
than the original?
Yes, that's right: skip the unused optional argument but keep the
place by inserting a comma.
Allin