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 71d8610 commit 4b74cbbCopy full SHA for 4b74cbb
+stdlib/has_dotnet.m
@@ -1,6 +1,16 @@
1
%% HAS_DOTNET check if .NET is available
2
-function tf = has_dotnet()
+%
3
+% .NET support in Matlab for macOS and Linux became available in R2025a.
4
+% Ref: % https://www.mathworks.com/help/releases/R2024b/matlab/matlab_external/system-requirements-for-using-matlab-interface-to-net.html
5
-tf = ~stdlib.isoctave() && ~isMATLABReleaseOlderThan('R2023a') && NET.isNETSupported;
6
+function y = has_dotnet()
7
+
8
+y = false;
9
10
+if stdlib.isoctave, return, end
11
12
+if ~ispc() && isMATLABReleaseOlderThan('R2024b'), return, end
13
14
+y = NET.isNETSupported;
15
16
end
0 commit comments