We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d0f88 commit eb41c03Copy full SHA for eb41c03
+DSS_MATLAB/IDSS.m
@@ -63,17 +63,17 @@
63
function obj = IDSS(obj)
64
MfilePath = fileparts(mfilename('fullpath'));
65
DLLfilePath = fullfile(MfilePath, 'dss_capi_v7');
66
- if libisloaded(DLLfilePath)
+ if libisloaded('dss_capi_v7')
67
return
68
else
69
loadlibrary(DLLfilePath, @DSS_MATLAB.dss_capi_v7_no_thunk);
70
obj.libraryWasLoaded = 1;
71
end
72
73
function delete(obj)
74
- if (obj.libraryWasLoaded ~= 0)
75
- unloadlibrary('dss_capi_v7');
76
- end
+ % if (obj.libraryWasLoaded ~= 0)
+ % unloadlibrary('dss_capi_v7');
+ % end
77
78
79
function obj = ClearAll(obj)
0 commit comments