Hi all I have a vector of Numbers like this:
L = [[0,1,2,0],[0,0,1,5]]
and I have transformed it like this, so all the non zero and higher than 1 numbers has been set to 1
L = [[0,1,1,0],[0,0,1,1]]
Can this operation be defined as a Normalization? if Not how can I define it?