create a function from temperature data

I have dataset from temperature and i would like to create a trignometric function to describe daily temperature variation. Is it possible?

Antworten (3)

Walter Roberson
Walter Roberson am 30 Sep. 2022

0 Stimmen

If you have the Curve Fitting Toolbox, you can use curvefitter() https://www.mathworks.com/help/curvefit/curvefitter-app.html . Or for before R2022a use cftool() . You would select "Sum of sine" and 1 term. This would fit your data as a single sine wave with some amplitude, some frequency, and some phase offset.
If you do not have the Curve Fitting Toolbox, you could also use fft() and pick out the largest peak; the location would tell you the primary frequency, and the magnitude and imaginary component there would estimate the amplitude and the phase (but you would have to go back and recompute those to take into account the other frequencies.)

Kategorien

Mehr zu Linear and Nonlinear Regression finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 30 Sep. 2022

Beantwortet:

am 30 Sep. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by