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 d61433f commit 74450c8Copy full SHA for 74450c8
+stdlib/is_mex_fun.m
@@ -0,0 +1,5 @@
1
+%% IS_MEX_FUN detect if a function is loaded as MEX or plain .m
2
+
3
+function y = is_mex_fun(name)
4
+ y = endsWith(which(name), mexext());
5
+end
0 commit comments