Extract a column from a matrix.
[C] = NL_F_Column(M,K)
Matrix.
Index.
Column.
NL_F_Column extracts the column C of the matrix M.
m=[1:3;4:6;7:9]; //m= //1 2 3 //4 5 6 //7 8 9 [v]=NL_F_Column(m,3)//application of NL_F_Column