写出对一组数据进行归一化和反归一化的代码
时间: 2023-02-12 11:58:47 浏览: 101
数据归一化matlab代码
5星 · 资源好评率100%
归一化代码:
```python
# x为待归一化的数组,x_min和x_max分别为x的最小值和最大值
x_norm = (x - x_min) / (x_max - x_min)
```
反归一化代码:
```python
# x_norm为已归一化的数组,x_min和x_max分别为x的最小值和最大值
x = x_norm * (x_max - x_min) + x_min
```
注意,如果数组x中包含负数,应当使用其他的归一化方式
阅读全文