필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to view the data after Smoothing?

조회 수: 1 (최근 30일)
R7 DR
R7 DR 2015년 3월 3일
마감: MATLAB Answer Bot 2021년 8월 20일
I have 3 data sets x,y and t. I am smoothing the data for r and t. I wrote the code like this
[x]=xlsread('a1.xlsx','sheet4','A2:A125')
[y]=xlsread('a1.xlsx','sheet4','B2:B125')
[t]=xlsread('a1.xlsx','Sheet4','C2:C125')
a = fit(t, x, 'smoothingspline', 'SmoothingParam', 0.995)
plot(a, t, x)
c = fit(t, y, 'smoothingspline', 'SmoothingParam', 0.995)
plot(a, t, y)
I am able to plot the graphs but I dont know how to find the new smoothed data.
The question is how to load the smoothed data into new variables, for example x1,y1,t1.
Thanks

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by