필터 지우기
필터 지우기

Extracting (clearing) useful true data from a noisy temperature signal

조회 수: 1 (최근 30일)
Hi everyone, I have a temperature sensor signal with peak values. Sensor was setted for 0-275 K and 150-900 for two step of measurement but real temperatures were really high. I purposed to measure cooled points with my sensor between the peaks. Thus, temperature curve contains cooled points between the peaks. Many piece of frame after peaks, temperature getting down slowly relative to increasing of peaks and this cooled temperature trend is changing till the last frame.My point is acquiring this cooled temperature points between peaks. I called high temperature peaks as maximum pekas and low temperature peaks as min peaks. I tried findpeaks, localmax commands but I have to come up with a smart algorithm because peak widths are changing firstly at 381000th frame, secondly 445500th frame. I also attached data file with figure version of data file. How can I extract this cooled points along the frame? Are there anyone who can help me??
Thanks.
Here the link of .mat and .fig file;
I tried all combinations of findpeaks, locmin or locmax commands.
  댓글 수: 3
mehmet alper
mehmet alper 2023년 1월 25일
Of course right now. Just could not find the attachment button.
mehmet alper
mehmet alper 2023년 1월 25일
.mat file can be easily plot with plot command by the way

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2023년 1월 25일
Looks like you want to extract data only where the local range in y values is low. Here's a start:
s = load('temps3-combinedloandhi.mat')
s = struct with fields:
sumlohi: [1547847×1 double]
t = s.sumlohi;
x = 1 : numel(t);
subplot(3, 1, 1);
plot(x, t, 'b.-')
title('Original Data')
grid on;
% Filter data
windowWidth = 181;
tMax = movmax(t, windowWidth);
tMin = movmin(t, windowWidth);
tRange = tMax - tMin;
subplot(3, 1, 2);
plot(tRange, 'b-');
grid on;
title('Plot of the local y ranges')
% Plot histogram of local ranges.
subplot(3, 1, 3);
histogram(tRange, 128);
grid on;
title('Histogram of local range')
% Find where range is low.
mask = tRange < 10;
% Extract only data where the local range is low.
x2 = x(mask);
t2 = t(mask);
subplot(3, 1, 1);
hold on;
plot(x2, t2, 'r-')
  댓글 수: 6
mehmet alper
mehmet alper 2023년 1월 28일
Need a serious help anyone who can help is out there dear friends??
mehmet alper
mehmet alper 2023년 1월 30일
Anyway, I found a way with using findpeaks reversely. Thanks you for your interest dear Image Analyst...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by