学习笔记20—MATLAB特殊函数

1、qfunc就是Q函数

2、mae(平均绝对误差)函数,mae(abs(A-B))

3、Z = zscore(x) 等价于 Z=(X-repmat(mean(X),57,1))./repmat(std(X),57,1);

4、combntns(1:5,3)、nchoosek(1:5,3)、combnk(1:5,3) 从5个数字中选出3个

原文地址:https://www.cnblogs.com/hechangchun/p/9783767.html