블로그 이미지
Leeway is... the freedom that someone has to take the action they want to or to change their plans.
maetel

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
  • total
  • today
  • yesterday

Category

4.1 Optimization Problems



eg.4.1


ezplot('x*log(x)')



* MATLAB에서 그래프 그리기

ezplot('x*log(x)')
로 해서 나왔으나, 일반적으로는 다음과 같은 식으로 한다.

x=0:0.1:10;
y=x.*log2(x);  ## 여기서, x 다음의 .은 element끼리의 scalar 연산을 지시함
plot(x,y)






http://en.wikipedia.org/wiki/Slack_variable


4.2 Convex Optimization




4.3 Linear Optimization Problems

http://en.wikipedia.org/wiki/Linear_program

 

 

4.4 Quadratic Optimization Problems

http://en.wikipedia.org/wiki/Quadratic_program


Markowitz portfolio optimization

 

4.4.2 Second-order cone programming

http://en.wikipedia.org/wiki/SOCP



http://en.wikipedia.org/wiki/Minimal_surface







posted by maetel