필터 지우기
필터 지우기

how to obtain smooth curve from the data stored in binary file?

조회 수: 4 (최근 30일)
megha
megha 2023년 11월 21일
답변: Walter Roberson 2023년 11월 21일
I have a binary file with unsigned 2-bytes, little-endiness data stored in it (MATLAB does not allow Binary file to get uploaded here).
I see that my data is much noisy than actual. I'd like to obtain a smooth curve instead of noisy one. Is there any way to obtain it?
fileID = fopen('output_file.bin');
data1 = fread(fileID,Inf,'*uint16','ieee-le');
plot(data1,'-b');
Any help is appriciated.
Thanks in advance!

답변 (1개)

Walter Roberson
Walter Roberson 2023년 11월 21일
You have the usual options, such as low-pass filter with lowpass or design a filter using designfilt or use a movmean or movmedian filter
There are also equivalent techniques such as taking fft(), zeroing high frequency components, and then inverse fft.
You might have reason to get into more specialized models such as ARX https://www.mathworks.com/help/ident/ref/arx.html

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by