数据标准化 2020-05-19 Function 将以下内容复制进A.py文件,与使用脚本放在同一文件夹内,通过import A 调用。 12345678910111213'''function :standardized(x,a)将数据标准化。 对x的a轴标准化。x为序列或数组,a为int;如1或(0,1)'''import numpy as npdef standardized(x,a): y = (x - x.mean(axis=(a)))/x.std(axis=(a)) return yimprot Astandardized(x,a) x为任意形状数组,函数对x的a轴进行标准化, a为int型;如1或(0,1)。 Newer 滤波(Butterworth滤波器) Older 线性回归系数