Skip to content

Commit 33e4466

Browse files
committed
hh
1 parent f6b03dc commit 33e4466

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

RATapi/examples/normal_reflectivity/DSPC_custom_layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,4 @@ def DSPC_custom_layers():
127127

128128
if __name__ == "__main__":
129129
problem, results = DSPC_custom_layers()
130-
RAT.plotting.plot_ref_sld(problem, results, True)
130+
# RAT.plotting.plot_ref_sld(problem, results, True)

RATapi/wrappers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def start_matlab():
6969
if matlab_path is None:
7070
matlab_path = ""
7171
else:
72+
print(matlab_path)
7273
temp = pathlib.Path(matlab_path)
7374
if temp.is_symlink():
7475
matlab_path = temp.readlink().as_posix()

cpp/rat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class MatlabEngine
126126
funcName = "mxCreateDoubleScalar";
127127
mxCreateDoubleScalar = mxLib->get_function<mxArray *(double)>(funcName);
128128

129-
funcName = "mxCreateDoubleMatrix";
129+
funcName = "mxCreateDoubleMatrix_800";
130130
mxCreateDoubleMatrix = mxLib->get_function<mxArray *(mwSize, mwSize, mxComplexity)>(funcName);
131131

132132
funcName = "mxCreateString";

0 commit comments

Comments
 (0)