-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
28 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
archive/* linguist-documentation | ||
docs/* linguist-documentation | ||
paper/* linguist-documentation | ||
|
||
.gitattributes text eol=lf | ||
.gitignore text eol=lf | ||
Makefile text eol=lf | ||
*.yml text eol=lf | ||
LICENSE text eol=lf | ||
*.ipynb text eol=lf | ||
*.txt text eol=lf | ||
*.py text eol=lf | ||
*.sh text eol=lf | ||
*.c text eol=lf | ||
*.cpp text eol=lf | ||
*.f text eol=lf | ||
*.f90 text eol=lf | ||
*.md text eol=lf | ||
*.rst text eol=lf | ||
*.csv text eol=lf | ||
*.m text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
Examples/compare/matlab_aerospace.py → scripts/compare/matlab_aerospace.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import functools | ||
from pathlib import Path | ||
|
||
import matlab.engine | ||
|
||
|
||
@functools.cache | ||
def matlab_engine(): | ||
cwd = Path(__file__).parent | ||
eng = matlab.engine.start_matlab("-nojvm") | ||
eng.addpath(eng.genpath(str(cwd)), nargout=0) | ||
return eng |
File renamed without changes.