필터 지우기
필터 지우기

smoothing a graph using matlab

조회 수: 4 (최근 30일)
Abeer Aboul Azm
Abeer Aboul Azm 2022년 5월 28일
답변: Ganesh Naik 2022년 5월 29일
how can I smooth data imported from one column (Excel sheet) using Matlab , Thanks
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 5월 28일
Are you expecting the techniques to be different than for https://www.mathworks.com/matlabcentral/answers/1728795-smoothing-a-graph-using-matlab?s_tid=srchtitle ?

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

답변 (1개)

Ganesh Naik
Ganesh Naik 2022년 5월 29일
You can use the "smooth: in built function in matlab to smooth the signal. Here is one solution
close all;
clc;
data = readmatrix('3.xlsx')
B = smoothdata(data);
plot(data,'-o'); hold on; plot(B,'-x')
legend('Original Data','Smoothed Data')

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by