Using polyfit in two arrays to detrend data.
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fabian
el 13 de Jun. de 2023
Comentada: Fabian
el 16 de Jun. de 2023
I have two 5x1 arrays (x and y oth come from one data table) and need to use them to detrend a data set. My line of code to do so is below. I keep getting the error of "arrays have incompatible array sizes for this operation." My question is, what can I do to make the array sizes work with the polyfit?
data_detrend = data-polyfit(x,y,4)
0 comentarios
Respuesta aceptada
Más respuestas (1)
Alan Stevens
el 13 de Jun. de 2023
Editada: Alan Stevens
el 13 de Jun. de 2023
polyfit just returns the coefficients of the polynomial. You need to use them in polyval to calculate data values.
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!