You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
add the ability to normalize all values in a tensor to some range, equivalent to MATLAB's implementation
Describe the solution you'd like
auto A = [0, 1 , 2, 3, 4 , 5 ]
auto normA = matx::normalize(A, matx::NORMALIZE_RANGE);
Describe alternatives you've considered
This is trivial to implement by-hand today, but is a common-enough process that we should have an API for it. we could also better optimize for the various normalize methods described by the matlab implementations.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
add the ability to normalize all values in a tensor to some range, equivalent to MATLAB's implementation
Describe the solution you'd like
auto A = [0, 1 , 2, 3, 4 , 5 ]
auto normA = matx::normalize(A, matx::NORMALIZE_RANGE);
normA = [0, 0.2, 0.4, 0.6, 0.8, 1]
matlab equivalent:
Describe alternatives you've considered
This is trivial to implement by-hand today, but is a common-enough process that we should have an API for it. we could also better optimize for the various normalize methods described by the matlab implementations.
The text was updated successfully, but these errors were encountered: