modix | R Documentation |
Takes integer input ix and projects on to 1-based modulus over base l
ie modix(1, 5) -> 1, modix(5, 5) -> 5, modix(6, 5) -> 1
Takes integer input ix and projects on to 1-based modulus over base l
ie modix(1, 5) -> 1, modix(5, 5) -> 5, modix(6, 5) -> 1
modix(ix, l)
modix(ix, l)
ix |
input indices to apply module |
l |
base of ix |
((ix-1) mod l) - 1
((ix-1) mod l) - 1
Marcin Imielinski
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.