MATLAB中的smooth函數(shù)用于平滑信號(hào)。平滑是一種信號(hào)處理技術(shù),用于去除噪聲或者使信號(hào)變得更加平滑。
smooth函數(shù)的基本語(yǔ)法如下:
smoothed_data = smooth(data, span, method)
其中,data是要平滑的輸入數(shù)據(jù),可以是向量、矩陣或多維數(shù)組;span是平滑窗口的大小,表示要考慮的鄰近數(shù)據(jù)點(diǎn)的數(shù)量;method是平滑方法,可以選擇’moving’、‘lowess’、‘loess’、‘sgolay’或’rlowess’。
smooth函數(shù)返回平滑后的數(shù)據(jù)。你可以根據(jù)數(shù)據(jù)類型選擇合適的輸出形式,例如,如果輸入是向量,則輸出也是向量;如果輸入是矩陣,則輸出也是矩陣。
下面是一個(gè)使用smooth函數(shù)平滑數(shù)據(jù)的示例:
x = 1:10;
y = [1, 3, 2, 4, 6, 5, 8, 7, 9, 10];
smoothed_y = smooth(y, 3, 'moving');
plot(x, y, 'o', x, smoothed_y, '-')
這將繪制原始數(shù)據(jù)點(diǎn)和通過(guò)移動(dòng)平均法平滑后的曲線。