Skip to content
Prev 312948 / 398503 Next

Large loops in R

On Tue, Dec 4, 2012 at 8:14 PM, Charles Novaes de Santana
<charles.santana at gmail.com> wrote:
Either

1) Use the development version of R which has large-vector support
(matrices are vectors under the hood)

or

2) A large matrix is usually sparse in structure: use one of the many
sparse representation packages (e.g., Matrix) available.

MW