Hello every one, I have a question related to approximation of functions based on norms
1 次查看(过去 30 天)
显示 更早的评论
How can I approximate this function and its constraint using L1, L2, and L∞ to perform the optimization process using fmincon MATLAB function?
Objective function F*w+f=min
Subject to F*w+f ≥b
F is a matrix (7x35)
f is a vector (7x1)
b is the vector (7x1)
w is the vector of parameters needed for optimization (35x1)
0 个评论
采纳的回答
Matt J
2020-11-14
You would not use fmincon. For L1, you could use minl1lin
For L2, you would use lsqlin,
For L-infinity, you would use fminimax,
4 个评论
更多回答(1 个)
Bruno Luong
2020-11-14
l1 and linfinity can be formulate as linear programming, so LINPROG is better.
4 个评论
Matt J
2020-11-14
The first constraint in Ahmed's addendum is non-convex. It looks difficult to recast that as a linear program.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!