Reputation: 2856
I have an matrix
Primitive64Store X
And I want to insert a column vector y
y
double[] y
To a specific column in X. How can I do that in OjAlgo?
X
Upvotes: 0
Views: 74
I found the answer!
X.fillColumn(0, column, Access1D.wrap(y));
Upvotes: 1