필터 지우기
필터 지우기

Problems with Regress Function

조회 수: 3 (최근 30일)
Robert
Robert 2014년 11월 5일
댓글: the cyclist 2014년 11월 5일
I'm trying to make a linear regression I have a matrix 1439x5. The first column is observed data and the following 4 are predictor variables. my code looks like this
ans = regress(wl(:,1:1),wl(:,2:5))
I am only getting an output of 4 numbers, where there should be 1439. Any ideas?
Thank you in advance for any help

채택된 답변

the cyclist
the cyclist 2014년 11월 5일
You say that you have 4 predictor variables. Therefore, you are estimating the coefficients of those 4 predictive terms in the linear regression. You get exactly what I would expect out of the function.
Why do you expect something else? Have you read
doc regress
?
  댓글 수: 2
Robert
Robert 2014년 11월 5일
Hi, you're too right. For some reason I thought it was going to spit out 1439 predicted values based on the coefficients, but re reading the regress doc made me realise I am wrong. Cheers
the cyclist
the cyclist 2014년 11월 5일
Glad it worked out. FYI, you can also use fitlm to fit linear regression models. This is the more object-oriented version that MATLAB introduced recently, and has a bunch of methods (such as predict) that can do things like get the predicted values.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by