You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've came up with an idea that the current implemenation of vector could be somewhat easily extended with support for multidimensional vectors by storing jump pointers to dimensions between the header and the actual storage. It may seem ineffective by memory, but actually it's just like storing vectors-of-vectors because subvectors need capacity for their headers as well.
So we need a new genarray type, because vector-of-vectors is not the same as matrix (since subvectors can have different lengths). As opposed to this, genarray will be pre-shaped. It means that its dimensions will be static, and to add new data row or column to it, you will have to reshape it first.
Notes:
The text was updated successfully, but these errors were encountered: