Simple stuff with sparse matrix

Hi,

I need an example of how to use sparse matrix, like create and add items.

Thanks

https://docs.julialang.org/en/latest/manual/arrays/#Sparse-Vectors-and-Matrices-1

thanks,

m = spzeros(10,10)
m[1,1] = value

very simple :joy: