Data preprocessing: Scale features to a fixed range
Formula: X_scaled = (X - X_min) / (X_max - X_min) * (max - min) + min
Purpose: Scale features to a fixed range
Default Range: [0, 1]
Use Case: Neural networks, image processing
Sensitive to: Outliers