├── .gitignore ├── LICENSE ├── README.md ├── codeTimer ├── codeTimer.m ├── indexing1.m ├── indexing2.m ├── indexing3.m ├── oddEntriesToZero1.m ├── oddEntriesToZero2.m └── oddEntriesToZero3.m └── latex ├── bibtex └── matlab-tipsntricks.bib ├── clean-code.tex ├── fast-code.tex ├── figures ├── Octave_Sombrero.pdf ├── coarse-fine.tex ├── fine-coarse.tex ├── julia-logo-color.pdf ├── matlab-open-profiler.png ├── matlab-profiler-circleBox-result.png └── python-logo-generic.pdf ├── header.tex ├── justfile ├── main.tex ├── matlab-alternatives.tex └── tipsntricks.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /codeTimer/codeTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/codeTimer.m -------------------------------------------------------------------------------- /codeTimer/indexing1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/indexing1.m -------------------------------------------------------------------------------- /codeTimer/indexing2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/indexing2.m -------------------------------------------------------------------------------- /codeTimer/indexing3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/indexing3.m -------------------------------------------------------------------------------- /codeTimer/oddEntriesToZero1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/oddEntriesToZero1.m -------------------------------------------------------------------------------- /codeTimer/oddEntriesToZero2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/oddEntriesToZero2.m -------------------------------------------------------------------------------- /codeTimer/oddEntriesToZero3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/codeTimer/oddEntriesToZero3.m -------------------------------------------------------------------------------- /latex/bibtex/matlab-tipsntricks.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/bibtex/matlab-tipsntricks.bib -------------------------------------------------------------------------------- /latex/clean-code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/clean-code.tex -------------------------------------------------------------------------------- /latex/fast-code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/fast-code.tex -------------------------------------------------------------------------------- /latex/figures/Octave_Sombrero.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/Octave_Sombrero.pdf -------------------------------------------------------------------------------- /latex/figures/coarse-fine.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/coarse-fine.tex -------------------------------------------------------------------------------- /latex/figures/fine-coarse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/fine-coarse.tex -------------------------------------------------------------------------------- /latex/figures/julia-logo-color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/julia-logo-color.pdf -------------------------------------------------------------------------------- /latex/figures/matlab-open-profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/matlab-open-profiler.png -------------------------------------------------------------------------------- /latex/figures/matlab-profiler-circleBox-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/matlab-profiler-circleBox-result.png -------------------------------------------------------------------------------- /latex/figures/python-logo-generic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/figures/python-logo-generic.pdf -------------------------------------------------------------------------------- /latex/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/header.tex -------------------------------------------------------------------------------- /latex/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/justfile -------------------------------------------------------------------------------- /latex/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/main.tex -------------------------------------------------------------------------------- /latex/matlab-alternatives.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/matlab-alternatives.tex -------------------------------------------------------------------------------- /latex/tipsntricks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschloe/matlab-guidelines/HEAD/latex/tipsntricks.tex --------------------------------------------------------------------------------