I am trying to figure out Logistic Regression implemented in Knime tool. Pls see https://github.com/knime/knime-core/blob/master/org.knime.base/src/org/knime/base/node/mine/regression/logistic/learner3/Learner.java
In the irlsRls method, there are many Array2DRowRealMatrix used like
RealMatrix x = new Array2DRowRealMatrix(1, rC + 1);
RealMatrix eBetaTx = new Array2DRowRealMatrix(1, tcC - 1);
RealMatrix pi = new Array2DRowRealMatrix(1, tcC - 1);
I have gone through the documentation for RealMatrix and understood the arguments say the row and column dimension. But can someone say with what values it is initialised when declared as I see lot of usage of these declared variables before assigning any values to it. Any help appreciated. Advance Thanks