linear regression system identification

7 ビュー (過去 30 日間)
brave owl
brave owl 2013 年 4 月 11 日
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 日
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 件)

カテゴリ

Help Center および File ExchangeMatrix Computations についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by