Does Matlab support efficient operations on large sparse tensors?
More specifically:
- Is there an elegant way, similar to
sparse
, of loading and storing a sparse tensor? As far as I can understand,sparse
can only load matrices. - Are operations like tensor product implemented efficiently over sparse tensors?
I realize I can always store a tensor as a combination of cell arrays of matrices, but that would require using loops, and I'm hoping to avoid that.
Since the data I'm working with is very large, I cannot consider a non-sparse representation.