linear regression system identification

hello everybody,i have to do a system identification task with linear regression method,but instead of using the 2_norm of the error for optimization,i have to use the inf and first norm of errors,is there anybody help me in writing the code?

 채택된 답변

Matt J
Matt J 2013년 4월 11일

0 개 추천

For the inf-norm, you could use FMINIMAX. For the L1-norm, you would probably have to reformulate as follows and minimize over (x,y) using LINPROG
min sum(y)
s.t.
error(x)-y<=0
-error(x)-y<=0

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Computations에 대해 자세히 알아보기

제품

질문:

2013년 4월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by