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 6f09969 commit 00af690Copy full SHA for 00af690
base64decode.m
@@ -34,7 +34,11 @@
34
output = zmat(varargin{1}, 0, 'base64');
35
return
36
elseif (isoctavemesh)
37
- error('You must install the ZMat toolbox (http://github.com/NeuroJSON/zmat) to use this function in Octave');
+ try
38
+ output = matlab.net.base64decode(varargin{1});
39
+ catch
40
+ error('You must install the ZMat toolbox (http://github.com/NeuroJSON/zmat) to use this function in Octave');
41
+ end
42
end
43
44
error(javachk('jvm'));
0 commit comments