Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 643 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 643 Bytes

Benchmark of calculations with sparse matrices

In this simulation I benchmark the usage of sparse matrices. I compare the size and the time of the following operations:

  • transpose
    t(X)
  • crossproduct
    X %*% t(X)
  • addition
    X + X
  • multiplication
    X * X
  • switching
    X[, c(2,3)] <- X[, c(3,2)]

For more information and details visit our blog!

Results size

Results time