├── .gitignore ├── Matlab ├── code │ ├── dos │ │ ├── moments_cheb_dos.m │ │ ├── moments_cheb_ldos.m │ │ ├── moments_exact_dos.m │ │ ├── moments_exact_ldos.m │ │ ├── moments_filter_dos.m │ │ ├── moments_filter_ldos.m │ │ ├── moments_lan_dos.m │ │ ├── moments_lan_ldos.m │ │ ├── moments_lanczos.m │ │ ├── moments_nd_dos.m │ │ ├── moments_nd_ldos.m │ │ └── moments_quad2cheb.m │ ├── filter │ │ ├── clique_filter.m │ │ ├── filter_construct.m │ │ ├── filter_jackson.m │ │ ├── filter_lorentz.m │ │ ├── vertex_hashing.m │ │ └── zero_filter.m │ ├── model │ │ ├── bter │ │ │ ├── bter.m │ │ │ ├── bter_edges2graph.m │ │ │ ├── ccperdeg.m │ │ │ ├── edges2graph.m │ │ │ ├── random_sample.m │ │ │ ├── tricnt.m │ │ │ ├── tricnt_mex.c │ │ │ ├── tricnt_mex.mexmaci64 │ │ │ └── tricnt_mex.mexw64 │ │ └── small_world │ │ │ └── WattsStrogatz.m │ ├── nested_dis │ │ ├── BuildLeafBlocks.m │ │ ├── BuildRootColumns.m │ │ ├── ndmetis │ │ ├── ndmetis.m │ │ └── write_metis_graph.m │ ├── plot │ │ ├── plot_cheb.m │ │ ├── plot_cheb_argparse.m │ │ ├── plot_cheb_ldos.m │ │ ├── plot_chebhist.m │ │ ├── plot_chebint.m │ │ └── plot_chebp.m │ ├── tests │ │ ├── TestDos.m │ │ ├── TestNestedDissectionGraph.m │ │ └── TestSyntheticTree.m │ └── util │ │ ├── MatrixPtr.m │ │ ├── TreeNode.m │ │ ├── load_graph.m │ │ ├── matrix_normalize.m │ │ ├── mfuncify.m │ │ └── readSMAT.m ├── data │ ├── HepTh.mat │ ├── README.md │ └── fetch.sh ├── demo │ ├── demo_HepTh.m │ ├── demo_bter_comparison.m │ ├── demo_dos.m │ ├── demo_ldos.m │ └── demo_ldos_filter.m └── startup.m ├── Python └── pyDOS │ ├── __init__.py │ ├── data │ └── erdos02-cc.mat │ ├── eig_rand1.py │ ├── load_graph.py │ ├── matrix_generation.py │ ├── mfunc_generation.py │ ├── moment_comp.py │ ├── moment_filter.py │ ├── plot_cheb.py │ ├── rescale_matrix.py │ └── test │ ├── README.rst │ ├── __init__.py │ ├── erdos_test.m │ ├── erdos_test.py │ ├── test_eig_rand1.py │ ├── test_matrix_generation.py │ ├── test_mfunc_generation.py │ ├── test_moment_comp.py │ ├── test_moment_filter.py │ ├── test_plot_cheb.py │ └── test_rescale_matrix.py ├── README.md └── pics ├── bter_dos.png ├── bter_ldos.png ├── erdos_dos.png ├── erdos_dos_zoom.png ├── erdos_ldos.png ├── filter_error.png ├── hepth_0filt.png ├── hepth_1filt.png ├── hepth_2filt.png ├── hepth_3filt.png └── hepth_4filt.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Matlab/code/dos/moments_cheb_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_cheb_dos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_cheb_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_cheb_ldos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_exact_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_exact_dos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_exact_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_exact_ldos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_filter_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_filter_dos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_filter_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_filter_ldos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_lan_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_lan_dos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_lan_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_lan_ldos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_lanczos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_lanczos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_nd_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_nd_dos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_nd_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_nd_ldos.m -------------------------------------------------------------------------------- /Matlab/code/dos/moments_quad2cheb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/dos/moments_quad2cheb.m -------------------------------------------------------------------------------- /Matlab/code/filter/clique_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/clique_filter.m -------------------------------------------------------------------------------- /Matlab/code/filter/filter_construct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/filter_construct.m -------------------------------------------------------------------------------- /Matlab/code/filter/filter_jackson.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/filter_jackson.m -------------------------------------------------------------------------------- /Matlab/code/filter/filter_lorentz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/filter_lorentz.m -------------------------------------------------------------------------------- /Matlab/code/filter/vertex_hashing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/vertex_hashing.m -------------------------------------------------------------------------------- /Matlab/code/filter/zero_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/filter/zero_filter.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/bter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/bter.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/bter_edges2graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/bter_edges2graph.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/ccperdeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/ccperdeg.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/edges2graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/edges2graph.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/random_sample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/random_sample.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/tricnt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/tricnt.m -------------------------------------------------------------------------------- /Matlab/code/model/bter/tricnt_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/tricnt_mex.c -------------------------------------------------------------------------------- /Matlab/code/model/bter/tricnt_mex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/tricnt_mex.mexmaci64 -------------------------------------------------------------------------------- /Matlab/code/model/bter/tricnt_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/bter/tricnt_mex.mexw64 -------------------------------------------------------------------------------- /Matlab/code/model/small_world/WattsStrogatz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/model/small_world/WattsStrogatz.m -------------------------------------------------------------------------------- /Matlab/code/nested_dis/BuildLeafBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/nested_dis/BuildLeafBlocks.m -------------------------------------------------------------------------------- /Matlab/code/nested_dis/BuildRootColumns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/nested_dis/BuildRootColumns.m -------------------------------------------------------------------------------- /Matlab/code/nested_dis/ndmetis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/nested_dis/ndmetis -------------------------------------------------------------------------------- /Matlab/code/nested_dis/ndmetis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/nested_dis/ndmetis.m -------------------------------------------------------------------------------- /Matlab/code/nested_dis/write_metis_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/nested_dis/write_metis_graph.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_cheb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_cheb.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_cheb_argparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_cheb_argparse.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_cheb_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_cheb_ldos.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_chebhist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_chebhist.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_chebint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_chebint.m -------------------------------------------------------------------------------- /Matlab/code/plot/plot_chebp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/plot/plot_chebp.m -------------------------------------------------------------------------------- /Matlab/code/tests/TestDos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/tests/TestDos.m -------------------------------------------------------------------------------- /Matlab/code/tests/TestNestedDissectionGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/tests/TestNestedDissectionGraph.m -------------------------------------------------------------------------------- /Matlab/code/tests/TestSyntheticTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/tests/TestSyntheticTree.m -------------------------------------------------------------------------------- /Matlab/code/util/MatrixPtr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/MatrixPtr.m -------------------------------------------------------------------------------- /Matlab/code/util/TreeNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/TreeNode.m -------------------------------------------------------------------------------- /Matlab/code/util/load_graph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/load_graph.m -------------------------------------------------------------------------------- /Matlab/code/util/matrix_normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/matrix_normalize.m -------------------------------------------------------------------------------- /Matlab/code/util/mfuncify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/mfuncify.m -------------------------------------------------------------------------------- /Matlab/code/util/readSMAT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/code/util/readSMAT.m -------------------------------------------------------------------------------- /Matlab/data/HepTh.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/data/HepTh.mat -------------------------------------------------------------------------------- /Matlab/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/data/README.md -------------------------------------------------------------------------------- /Matlab/data/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/data/fetch.sh -------------------------------------------------------------------------------- /Matlab/demo/demo_HepTh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/demo/demo_HepTh.m -------------------------------------------------------------------------------- /Matlab/demo/demo_bter_comparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/demo/demo_bter_comparison.m -------------------------------------------------------------------------------- /Matlab/demo/demo_dos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/demo/demo_dos.m -------------------------------------------------------------------------------- /Matlab/demo/demo_ldos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/demo/demo_ldos.m -------------------------------------------------------------------------------- /Matlab/demo/demo_ldos_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/demo/demo_ldos_filter.m -------------------------------------------------------------------------------- /Matlab/startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Matlab/startup.m -------------------------------------------------------------------------------- /Python/pyDOS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/__init__.py -------------------------------------------------------------------------------- /Python/pyDOS/data/erdos02-cc.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/data/erdos02-cc.mat -------------------------------------------------------------------------------- /Python/pyDOS/eig_rand1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/eig_rand1.py -------------------------------------------------------------------------------- /Python/pyDOS/load_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/load_graph.py -------------------------------------------------------------------------------- /Python/pyDOS/matrix_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/matrix_generation.py -------------------------------------------------------------------------------- /Python/pyDOS/mfunc_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/mfunc_generation.py -------------------------------------------------------------------------------- /Python/pyDOS/moment_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/moment_comp.py -------------------------------------------------------------------------------- /Python/pyDOS/moment_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/moment_filter.py -------------------------------------------------------------------------------- /Python/pyDOS/plot_cheb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/plot_cheb.py -------------------------------------------------------------------------------- /Python/pyDOS/rescale_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/rescale_matrix.py -------------------------------------------------------------------------------- /Python/pyDOS/test/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/README.rst -------------------------------------------------------------------------------- /Python/pyDOS/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/__init__.py -------------------------------------------------------------------------------- /Python/pyDOS/test/erdos_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/erdos_test.m -------------------------------------------------------------------------------- /Python/pyDOS/test/erdos_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/erdos_test.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_eig_rand1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_eig_rand1.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_matrix_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_matrix_generation.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_mfunc_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_mfunc_generation.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_moment_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_moment_comp.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_moment_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_moment_filter.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_plot_cheb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_plot_cheb.py -------------------------------------------------------------------------------- /Python/pyDOS/test/test_rescale_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/Python/pyDOS/test/test_rescale_matrix.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/README.md -------------------------------------------------------------------------------- /pics/bter_dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/bter_dos.png -------------------------------------------------------------------------------- /pics/bter_ldos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/bter_ldos.png -------------------------------------------------------------------------------- /pics/erdos_dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/erdos_dos.png -------------------------------------------------------------------------------- /pics/erdos_dos_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/erdos_dos_zoom.png -------------------------------------------------------------------------------- /pics/erdos_ldos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/erdos_ldos.png -------------------------------------------------------------------------------- /pics/filter_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/filter_error.png -------------------------------------------------------------------------------- /pics/hepth_0filt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/hepth_0filt.png -------------------------------------------------------------------------------- /pics/hepth_1filt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/hepth_1filt.png -------------------------------------------------------------------------------- /pics/hepth_2filt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/hepth_2filt.png -------------------------------------------------------------------------------- /pics/hepth_3filt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/hepth_3filt.png -------------------------------------------------------------------------------- /pics/hepth_4filt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kd383/NetworkDOS/HEAD/pics/hepth_4filt.png --------------------------------------------------------------------------------