KaiAragaki / gplate2

Other
0 stars 0 forks source link

Ideas #4

Open KaiAragaki opened 2 months ago

KaiAragaki commented 2 months ago

kronecker allows for some pattern (X) to be 'dilated' to dimensions given by Y. It also allows for 'tiling' using a vector of 1s (column or row - just need to use t)

KaiAragaki commented 2 months ago

Something like this is neat - allows for '7 conditions with 3 replicates and wrapping` very easily:

matrix(1:7, 3, 12, byrow = T) %x% matrix(1, nrow = 3)
# For a true 8x12 plate, would need to pare down using `[` probably