.gitignore 554 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. **/*.pyd
  26. **/*.c
  27. # Cloud based storage dotfile
  28. .MATLABDriveTag
  29. **/conf/
  30. **/target/
  31. **/output/
  32. **/testData/
  33. **/testOutput/
  34. **/source_code_original/
  35. **/build/
  36. **/dist/
  37. **/log/
  38. **/*.egg-info/
  39. **/__pycache__/
  40. **/*venv/