Export Fourier series coefficient into workspace variables

조회 수: 11 (최근 30일)
ludovico
ludovico 2015년 9월 18일
답변: André Ivaniski Mello 2020년 1월 7일
Hi guys, i need to export the results from a Fourier series a0,a1,b1 into variables of the workspace, in order to further elaborate them. If i use the CFTOOL manually there is no problem, since i can save this data output easily. The problem comes when i try to do it in textcode from the editor, since i have to postprocess a huge amount of data files and was trying to generate a code to do this process automatically. For the Fourier series i am using the following code:
[fitobject]=fit(var1,var2,'fourier1') [fitresult,gof]=fitobject(a0,a1,b1)
with a0,a1,b1 as global var. Thx to those willing to help a disperate newby :D

채택된 답변

Hamoon
Hamoon 2015년 9월 19일
a0 = fitobject.a0;
a1 = fitobject.a1;
b1 = fitobject.b1;
w = fitobject.w;

추가 답변 (1개)

André Ivaniski Mello
André Ivaniski Mello 2020년 1월 7일
f1 = fit(x,y,fourier2);
coeffs = coeffvalues(f1);

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by