Curve smoothing of a voltage-time plot

3 次查看(过去 30 天)
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