I was wondering if there is a built in normalisation function in flutter. That works like this
List array = [-105,24,66,-50,-49,2]
//Normalises t
I'm afraid there isn't one, but I've made what you're looking for manually:
import 'dart:math';
List array = [-105, 24, 66, -50, -49, 2];
final lower = array.reduce(min);
final upper = array.reduce(max);
final List normalized = [];
array.forEach((element) => element < 0
? normalized.add(-(element / lower))
: normalized.add(element / upper));
print(normalized);