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
相關文章
相關標籤/搜索