├── .gitignore ├── Chapter2 Convex Sets ├── Convex_Sets.out ├── Convex_Sets.pdf └── Convex_Sets.tex ├── Chapter3 Convex Function ├── Convex_Function.out ├── Convex_Function.pdf ├── Convex_Function.tex └── imgs │ ├── multi.eps │ ├── multi.png │ ├── quasi.eps │ └── quasi.png ├── Chapter4 Convex Problem ├── Convex Problem.out ├── Convex Problem.pdf ├── Convex Problem.tex └── imgs │ ├── logax.eps │ ├── logax.png │ ├── ridge.eps │ └── ridge.png ├── Chapter5 Duality ├── Duality.out ├── Duality.pdf └── Duality.tex ├── README.md ├── test.pdf └── test.tex /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.aux 3 | *.gz -------------------------------------------------------------------------------- /Chapter2 Convex Sets/Convex_Sets.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter2 Convex Sets/Convex_Sets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter2 Convex Sets/Convex_Sets.pdf -------------------------------------------------------------------------------- /Chapter2 Convex Sets/Convex_Sets.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter2 Convex Sets/Convex_Sets.tex -------------------------------------------------------------------------------- /Chapter3 Convex Function/Convex_Function.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3 Convex Function/Convex_Function.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/Convex_Function.pdf -------------------------------------------------------------------------------- /Chapter3 Convex Function/Convex_Function.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/Convex_Function.tex -------------------------------------------------------------------------------- /Chapter3 Convex Function/imgs/multi.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/imgs/multi.eps -------------------------------------------------------------------------------- /Chapter3 Convex Function/imgs/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/imgs/multi.png -------------------------------------------------------------------------------- /Chapter3 Convex Function/imgs/quasi.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/imgs/quasi.eps -------------------------------------------------------------------------------- /Chapter3 Convex Function/imgs/quasi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter3 Convex Function/imgs/quasi.png -------------------------------------------------------------------------------- /Chapter4 Convex Problem/Convex Problem.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4 Convex Problem/Convex Problem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/Convex Problem.pdf -------------------------------------------------------------------------------- /Chapter4 Convex Problem/Convex Problem.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/Convex Problem.tex -------------------------------------------------------------------------------- /Chapter4 Convex Problem/imgs/logax.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/imgs/logax.eps -------------------------------------------------------------------------------- /Chapter4 Convex Problem/imgs/logax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/imgs/logax.png -------------------------------------------------------------------------------- /Chapter4 Convex Problem/imgs/ridge.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/imgs/ridge.eps -------------------------------------------------------------------------------- /Chapter4 Convex Problem/imgs/ridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter4 Convex Problem/imgs/ridge.png -------------------------------------------------------------------------------- /Chapter5 Duality/Duality.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5 Duality/Duality.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter5 Duality/Duality.pdf -------------------------------------------------------------------------------- /Chapter5 Duality/Duality.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/Chapter5 Duality/Duality.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ConvexOptimization 2 | 中科大凌青老师凸优化课程的课程笔记 3 | -------------------------------------------------------------------------------- /test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/test.pdf -------------------------------------------------------------------------------- /test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZxyGed/ConvexOptimization/HEAD/test.tex --------------------------------------------------------------------------------