-
Hello, Matrix A .... init A(m,n) The Subvector of A did not change. Only a workaround using for loop had the correct result |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Note that the column vector returned by
|
Beta Was this translation helpful? Give feedback.
-
Thank you, |
Beta Was this translation helpful? Give feedback.
Note that the column vector returned by
.Column(j)
is independent from A. SoSetSubVector
operates on that column vector instead of A. It seems that you could useSetColumn
instead: