linear regression system identification

12 Ansichten (letzte 30 Tage)
brave owl
brave owl am 11 Apr. 2013
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?

Akzeptierte Antwort

Matt J
Matt J am 11 Apr. 2013
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

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Computations finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by