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 would like to set its data in row / column style, something like:
// Using a macro to generate the Index
matrix[get_index(1, 1)] = 1.0;
// Using a function
matrix.set(1, 1, 1.0);
I'm not able to find any function / macro to perform this kind of operation, there is a reason for this?
(In case I'm available to submit a PR to implement it).