Smoothing a noisy data set
조회 수: 2 (최근 30일)
이전 댓글 표시
As a homework assignment, I need to make a function that uses a moving average to smooth a noisy data set.
The function I need to make takes a data set to be smooothed "y", the corresponding vector for the indipendent variable 't", as well as the number of data points used in the moving average "N" then return the sothed data set "ys" and a corresponidng time vecotr for the smoothed data "ts".
What I have so far:
function [ys,ts] = smoothN(y,t,N)
%smooothN.m uses a moving average to smooth data
% Input: y: data vector to be smoothed
% Input: t: the corresponding time vector to y
% Input: N: specifies how many data points to use when calculating the moving average
% Output: ys: the smoothed data vector
% Output: ts: the coresponding time vector
for i=1:length(y)
add=0;
for j=i:i+(N-1) % this for loop finds the summ of the elements within the moving avergae
add=add+y(i);
end
ys(i)=add/N; %finds the average and sets it into the smoothed vector
ts(i)=t(i); % adjusts the corresponding time vector
end
%Bradley
Unortunatly, this just returns the original vector and I can't figure out why.
Please help me
댓글 수: 0
답변 (1개)
Astha Singh
2018년 12월 12일
Hello,
The error is in variable indexing, in the second for-loop,
add = add+y(j)
instead of "add = add+y(i)".
Also, you would need to take care of the indexing of variable 'i' when the last 'N' sample values of 'ys' are being calculated.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Smoothing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!