Using polyfit in two arrays to detrend data.
조회 수: 9 (최근 30일)
이전 댓글 표시
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
추가 답변 (1개)
Alan Stevens
2023년 6월 13일
편집: Alan Stevens
2023년 6월 13일
polyfit just returns the coefficients of the polynomial. You need to use them in polyval to calculate data values.
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!