0

I have an matrix

Primitive64Store X

And I want to insert a column vector y

double[] y

To a specific column in X. How can I do that in OjAlgo?

euraad
  • 2,467
  • 5
  • 30
  • 51

1 Answers1

1

I found the answer!

X.fillColumn(0, column, Access1D.wrap(y));
euraad
  • 2,467
  • 5
  • 30
  • 51