.gitignore 545 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Autosave files
  2. *.asv
  3. *.m~
  4. *.autosave
  5. *.slx.r*
  6. *.mdl.r*
  7. # Derived content-obscured files
  8. *.p
  9. # Compiled MEX files
  10. *.mex*
  11. # Packaged app and toolbox files
  12. *.mlappinstall
  13. *.mltbx
  14. # Deployable archives
  15. *.ctf
  16. # Generated helpsearch folders
  17. helpsearch*/
  18. # Code generation folders
  19. slprj/
  20. sccprj/
  21. codegen/
  22. # Cache files
  23. *.slxc
  24. **/*.pyc
  25. **/*.c
  26. # Cloud based storage dotfile
  27. .MATLABDriveTag
  28. **/conf/
  29. **/target/
  30. **/output/
  31. **/testData/
  32. **/testOutput/
  33. **/source_code_original/
  34. **/build/
  35. **/dist/
  36. **/log/
  37. **/*.egg-info/
  38. **/__pycache__/
  39. **/*venv/