├── .gitignore ├── README.md ├── SUMMARY.md ├── docs ├── .nojekyll ├── 3db功分.md ├── README.md ├── _coverpage.md ├── _images │ ├── 2021-01-04-17-29-03.png │ ├── 2021-01-06-15-58-39.png │ ├── 2021-01-06-15-59-44.png │ └── 2021-01-06-16-01-34.png ├── _media │ └── icon.svg ├── _sidebar.md ├── index.html ├── 例程.md ├── 前言.md ├── 安装.md ├── 测试.md └── 附录.md └── src ├── gen_data └── main.py ├── material.mdf └── transpose ├── gen_data.py └── initbase.py /.gitignore: -------------------------------------------------------------------------------- 1 | /testdocs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/3db功分.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/3db功分.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_images/2021-01-04-17-29-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_images/2021-01-04-17-29-03.png -------------------------------------------------------------------------------- /docs/_images/2021-01-06-15-58-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_images/2021-01-06-15-58-39.png -------------------------------------------------------------------------------- /docs/_images/2021-01-06-15-59-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_images/2021-01-06-15-59-44.png -------------------------------------------------------------------------------- /docs/_images/2021-01-06-16-01-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_images/2021-01-06-16-01-34.png -------------------------------------------------------------------------------- /docs/_media/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_media/icon.svg -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/例程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/例程.md -------------------------------------------------------------------------------- /docs/前言.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/前言.md -------------------------------------------------------------------------------- /docs/安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/安装.md -------------------------------------------------------------------------------- /docs/测试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/测试.md -------------------------------------------------------------------------------- /docs/附录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/docs/附录.md -------------------------------------------------------------------------------- /src/gen_data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/src/gen_data/main.py -------------------------------------------------------------------------------- /src/material.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/src/material.mdf -------------------------------------------------------------------------------- /src/transpose/gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/src/transpose/gen_data.py -------------------------------------------------------------------------------- /src/transpose/initbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Photonic-AI-Communication/lumerical-python-script/HEAD/src/transpose/initbase.py --------------------------------------------------------------------------------