2021年8月26日

matlab函数tight_subplot控制图像的边界(margin),subplot的间距(gap)

摘要: tight_subplot实现比matlab自带的subplot更紧凑的子图绘制。 function [ha, pos] = tight_subplot(Nh, Nw, gap, marg_h, marg_w) % tight_subplot creates "subplot" axes with 阅读全文

posted @ 2021-08-26 22:43 那抹阳光1994 阅读(2335) 评论(0) 推荐(0) 编辑

matlab获取数据直方图和经验累计分布CDF

摘要: histogram获取数据直方图 通过BinWidth参数调整箱子的宽度 BinWidth = 0.01 BinWidth = 0.1 cdfplot获取经验累积分布 阅读全文

posted @ 2021-08-26 17:44 那抹阳光1994 阅读(865) 评论(0) 推荐(0) 编辑

matlab计算数据分位点prctile

摘要: prctile计算数据集的百分位数(分位点) Y = prctile(X,p) 根据区间 [0,100] 中的百分比 p 返回数据向量或数组 X 中元素的百分位数。 a = rand(1, 10); sort(a) prctile(a, 70) a = 0.3452 0.2825 0.7467 0. 阅读全文

posted @ 2021-08-26 17:33 那抹阳光1994 阅读(3927) 评论(0) 推荐(0) 编辑

导航