I normalize a vector a the following way:
a_normed = (a - min(a)) / ( max(a) - min(a) )
Is there a shorthand notation for this operation?
Thanks
I normalize a vector a the following way:
a_normed = (a - min(a)) / ( max(a) - min(a) )
Is there a shorthand notation for this operation?
Thanks