Symmetry function scaling
- 
enum nnp::SymFnc::ScalingType
- List of available scaling types. - Values: - 
enumerator ST_NONE
- \(G_\text{scaled} = G\) 
 - 
enumerator ST_SCALE
- \(G_\text{scaled} = S_\text{min} + \left(S_\text{max} - S_\text{min}\right) \cdot \frac{G - G_\text{min}} {G_\text{max} - G_\text{min}} \) 
 - 
enumerator ST_CENTER
- \(G_\text{scaled} = G - \left<G\right>\) 
 - 
enumerator ST_SCALECENTER
- \(G_\text{scaled} = S_\text{min} + \left(S_\text{max} - S_\text{min}\right) \cdot \frac{G - \left<G\right>} {G_\text{max} - G_\text{min}} \) 
 - 
enumerator ST_SCALESIGMA
- \(G_\text{scaled} = S_\text{min} + \left(S_\text{max} - S_\text{min}\right) \cdot \frac{G - \left<G\right>}{\sigma_G} \) 
 
- 
enumerator ST_NONE