matlab学习之数据分析

clear all load count.dat c3 = count(:,3); % 第三列数据 c3NaNCount = sum(isnan(c3)); h = histogram(c3,10); % 直方图,横坐标为值,纵坐标为组数 N = max(h.Values); % 求最大值 mu3 = mean(c3); % 求平均值 sigma3 = std(c3); % 求均方差 hold o
相关文章
相关标签/搜索