How to find the index of maximum element in ojalgo? To find maximum I can use double res = mat.aggregateAll(Aggregator.MAXIMUM);, but how to find the maximum’s indices? PS: the mat is type of SparseStore<Double> Answer You don’t specify what type mat is? There is a method indexOfLargest() defined in the Access1D.Aggregatable interface – implemented by a lot of different classes.
Tag: sparse-matrix
How to convert a string that contains doubles into a matrix in java
Here we have a String of 9 numbers, some of which are double, and some of which are int. I need to convert this into a matrix and when I am given only integer values in the String, it is fairly easy because all I do cast double on a whole integer after I parseInt for each String value that