I am working with Matrix Market matrices in Mathematica (specifically GEMAT12), and I saw from other posts that you call properties of a variable exemplified below:
A = Import["gemat12.mtx"];
A["Density"]
A["Dimensions"]
With the following output:
0.00136011
{4929, 4929}
So my question: How can I list all available properties of my variable A?
A? I see how to do it for functions like "Solve" from this post but can't get it to apply to an already defined sparse matrix. EDIT: This is in regards to getting a list that includes "Properties", "Dimensions", and "NonzeroValues". I apologize if my language is confusing - I'm confused on the terminology myself. – Chloe Jan 11 '23 at 17:42