필터 지우기
필터 지우기

Curve smoothing of a voltage-time plot

조회 수: 3 (최근 30일)
Chinmaya
Chinmaya 2023년 3월 31일
댓글: Chinmaya 2023년 3월 31일
Hello,
I have a voltage-time plot as shown below, the voltage values are fluctauting and hence I am not able to use it in my end application.
Could anyone please help me out on curve smoothing for the same.
Is there any tool available in matlab that I can use to smooth the curve.
I have attached the voltage-time values for reference.
Regards

답변 (2개)

Pratheek
Pratheek 2023년 3월 31일
Hi Chinmaya,
MATLAB provides a built-in function called smoothdata() that can be used to generate smoother plots compared to those generated using raw data. By applying smoothing techniques to the data, smoothdata() can effectively reduce noise and highlight underlying trends in the data. Refer this link for more information Smooth noisy data - MATLAB smoothdata (mathworks.com)
Please find attached the code snippet that can be used to smooth the data in MATLAB.
% Load data from xlsx file
data = xlsread('query_curve_smoothing.xlsx');
% Extract relevant data
x = data(:,1);
y = smoothdata(data(:,3));
% Plot data
plot(x,y);
  댓글 수: 1
Chinmaya
Chinmaya 2023년 3월 31일
Hello pratheek,
Thanks for the answer, smoothdata reduces lot of fluctuations.The smoothened curve is as shown below
Can we further smoothen the curve as shown in below reference.
Regards

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


Raghunathraju
Raghunathraju 2023년 3월 31일
Hi Chinmaya,
You can smooth your curve using smooth function. You can refer the following example to use the smooth function
a=xlsread("query_curve_smoothing.xlsx");
x=a(:,1);
y=a(:,3);
yy1 = smooth(x,0.1,'loess');
yy2 = smooth(y,0.1,'rloess');
subplot(2,1,1)
plot(a(:,1),a(:,3))
subplot(2,1,2)
plot(yy1,yy2)
for more information you can refer MATLAB Documentation
  댓글 수: 1
Chinmaya
Chinmaya 2023년 3월 31일
Hello Raghunathraju,
Thanks for the answer, Is there a way by which we can further smoothen the cure, as shown in below reference.
Regards

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

카테고리

Help CenterFile Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by