├── .gitignore ├── README.md └── matlab ├── ADMM.m ├── CVX_Central.m ├── DPGA.m ├── Data_Generate.m ├── G_x.m ├── PG_EXTRA.m ├── SADMM.m ├── SDPGA.m ├── clique.m ├── demo.m ├── gentoy_group.m ├── huberloss.m ├── main.m ├── produce_plot.m ├── prox1.m ├── prox2.m ├── small_world.m └── tree.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.fig 2 | *.csv 3 | *.m~ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/README.md -------------------------------------------------------------------------------- /matlab/ADMM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/ADMM.m -------------------------------------------------------------------------------- /matlab/CVX_Central.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/CVX_Central.m -------------------------------------------------------------------------------- /matlab/DPGA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/DPGA.m -------------------------------------------------------------------------------- /matlab/Data_Generate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/Data_Generate.m -------------------------------------------------------------------------------- /matlab/G_x.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/G_x.m -------------------------------------------------------------------------------- /matlab/PG_EXTRA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/PG_EXTRA.m -------------------------------------------------------------------------------- /matlab/SADMM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/SADMM.m -------------------------------------------------------------------------------- /matlab/SDPGA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/SDPGA.m -------------------------------------------------------------------------------- /matlab/clique.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/clique.m -------------------------------------------------------------------------------- /matlab/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/demo.m -------------------------------------------------------------------------------- /matlab/gentoy_group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/gentoy_group.m -------------------------------------------------------------------------------- /matlab/huberloss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/huberloss.m -------------------------------------------------------------------------------- /matlab/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/main.m -------------------------------------------------------------------------------- /matlab/produce_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/produce_plot.m -------------------------------------------------------------------------------- /matlab/prox1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/prox1.m -------------------------------------------------------------------------------- /matlab/prox2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/prox2.m -------------------------------------------------------------------------------- /matlab/small_world.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/small_world.m -------------------------------------------------------------------------------- /matlab/tree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guzzii/DPGA-Algorithm/HEAD/matlab/tree.m --------------------------------------------------------------------------------