-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathoctaveToJavaIntArray.m
executable file
·60 lines (54 loc) · 2.16 KB
/
octaveToJavaIntArray.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%%
%% Java Information Dynamics Toolkit (JIDT)
%% Copyright (C) 2012, Joseph T. Lizier
%%
%% This program is free software: you can redistribute it and/or modify
%% it under the terms of the GNU General Public License as published by
%% the Free Software Foundation, either version 3 of the License, or
%% (at your option) any later version.
%%
%% This program is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%% GNU General Public License for more details.
%%
%% You should have received a copy of the GNU General Public License
%% along with this program. If not, see <http://www.gnu.org/licenses/>.
%%
% function jIntArray = octaveToJavaIntArray(octaveArray)
%
% Convert a native octave array to a java int 1D array.
%
% Assumes the JIDT jar is already on the java classpath - you will get a
% java classpath error if this is not the case.
%
function jIntArray = octaveToJavaIntArray(octaveArray)
if (exist ('OCTAVE_VERSION', 'builtin'))
% We're in octave:
% Using 'org.octave.Matrix' is much faster than conversion cell by cell
if (length(octaveArray) > 1)
% Do this the normal way
tmp = javaObject('infodynamics.utils.OctaveMatrix');
try
tmp.loadIntData(octaveArray,[1, length(octaveArray)]);
catch
% Most likely error here is that octaveArray is interpreted as booleans, so try loading as booleans:
tmp.loadBooleanAsIntData(octaveArray,[1, length(octaveArray)]);
end
jIntArray = tmp.asIntVector();
else
% For length 1 arrays, we need to perform a hack here or else
% java thinks the length-one array is a scalar.
% I thought I had this work once:
% tmp = javaObject('org.octave.Matrix',[octaveArray,octaveArray] ,[1, 1]);
% jDoubleArray = tmp.asDoubleVector();
% but now can't get that to repeat.
% So instead we'll do this the slow way (doesn't matter for one element only)
jIntArray = javaArray('java.lang.Integer', 1);
jIntArray(1) = octaveArray(1);
end
else
% We're in matlab: the native matlab array can be passed to java as is:
jIntArray = octaveArray;
end
end