We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
functions in gptoolbox-master\mex how can they be compiled for Octave ? it should be a command like
mkoctfile .......
many thanks your toolbox is amazing !!
PS for another library an exmaple is like this:
clc; clear functions;
NAMES = { ... 'FresnelCS', ... 'XY_to_angle', ... 'CircleArcMexWrapper', ... 'BiarcMexWrapper', ... 'BiarcListMexWrapper', ... 'LineSegmentMexWrapper', ... 'PolyLineMexWrapper', ... 'Triangle2DMexWrapper', ... 'ClothoidCurveMexWrapper', ... 'ClothoidListMexWrapper', ... 'ClothoidSplineG2MexWrapper', ... 'TriTriOverlap' };
LIB_NAMES = { ... 'G2lib', ... 'G2lib_intersect', ... 'AABBtree', ... 'Line',... 'PolyLine', ... 'Circle', ... 'Biarc', ... 'BiarcList', ... 'Clothoid', ... 'ClothoidList', ... 'ClothoidDistance', ... 'ClothoidG2', ... 'Fresnel', ... 'Triangle2D', ... };
LIB_NAMES2 = { ... 'PolynomialRoots-1-Quadratic', ... 'PolynomialRoots-2-Cubic', ... 'PolynomialRoots-Utils', ... };
if isunix MEX = 'mkoctfile --mex -O2'; elseif ispc MEX = 'mkoctfile --mex'; end
INC = ' -I../submodules/quarticRootsFlocke/src -I../src ';
LIB_SRCS = ''; LIB_OBJS = ''; for k=1:length(LIB_NAMES) LIB_SRCS = [ LIB_SRCS, ' ../src/', LIB_NAMES{k}, '.cc' ]; LIB_OBJS = [ LIB_OBJS, LIB_NAMES{k}, '.o ' ]; CMD = [ MEX, ' -c ', INC, '../src/', LIB_NAMES{k}, '.cc' ]; disp(CMD); eval(CMD); end for k=1:length(LIB_NAMES2) LIB_SRCS = [ LIB_SRCS, ' ../submodules/quarticRootsFlocke/src/', LIB_NAMES2{k}, '.cc' ]; LIB_OBJS = [ LIB_OBJS, LIB_NAMES2{k}, '.o ' ]; CMD = [ MEX, ' -c ', INC, '../submodules/quarticRootsFlocke/src/', LIB_NAMES2{k}, '.cc' ]; disp(CMD); eval(CMD); end
disp('---------------------------------------------------------');
for k=1:length(NAMES) N=NAMES{k}; disp('---------------------------------------------------------'); fprintf(1,'Compiling: %s\n',N); CMD = [ MEX ' -output ../matlab/', N, ' -I../src ../src_mex/mex_', N, '.cc ', LIB_OBJS ]; if isunix CMD = [CMD, ' -lstdc++ -O2']; elseif ispc end disp(CMD); eval(CMD); end
for k=1:length(LIB_NAMES) delete([ LIB_NAMES{k}, '.o' ]); end
disp('Install struct, io, statistics, optim package, it may take long time');
pkg install -forge struct pkg install -forge io pkg install -forge statistics pkg install -forge optim
disp('----------------------- DONE ----------------------------');
The text was updated successfully, but these errors were encountered:
No branches or pull requests
functions in gptoolbox-master\mex
how can they be compiled for Octave ?
it should be a command like
mkoctfile .......
many thanks
your toolbox is amazing !!
PS for another library an exmaple is like this:
compile_octave.m
clc;
clear functions;
NAMES = { ...
'FresnelCS', ...
'XY_to_angle', ...
'CircleArcMexWrapper', ...
'BiarcMexWrapper', ...
'BiarcListMexWrapper', ...
'LineSegmentMexWrapper', ...
'PolyLineMexWrapper', ...
'Triangle2DMexWrapper', ...
'ClothoidCurveMexWrapper', ...
'ClothoidListMexWrapper', ...
'ClothoidSplineG2MexWrapper', ...
'TriTriOverlap'
};
LIB_NAMES = { ...
'G2lib', ...
'G2lib_intersect', ...
'AABBtree', ...
'Line',...
'PolyLine', ...
'Circle', ...
'Biarc', ...
'BiarcList', ...
'Clothoid', ...
'ClothoidList', ...
'ClothoidDistance', ...
'ClothoidG2', ...
'Fresnel', ...
'Triangle2D', ...
};
LIB_NAMES2 = { ...
'PolynomialRoots-1-Quadratic', ...
'PolynomialRoots-2-Cubic', ...
'PolynomialRoots-Utils', ...
};
if isunix
MEX = 'mkoctfile --mex -O2';
elseif ispc
MEX = 'mkoctfile --mex';
end
INC = ' -I../submodules/quarticRootsFlocke/src -I../src ';
LIB_SRCS = '';
LIB_OBJS = '';
for k=1:length(LIB_NAMES)
LIB_SRCS = [ LIB_SRCS, ' ../src/', LIB_NAMES{k}, '.cc' ];
LIB_OBJS = [ LIB_OBJS, LIB_NAMES{k}, '.o ' ];
CMD = [ MEX, ' -c ', INC, '../src/', LIB_NAMES{k}, '.cc' ];
disp(CMD);
eval(CMD);
end
for k=1:length(LIB_NAMES2)
LIB_SRCS = [ LIB_SRCS, ' ../submodules/quarticRootsFlocke/src/', LIB_NAMES2{k}, '.cc' ];
LIB_OBJS = [ LIB_OBJS, LIB_NAMES2{k}, '.o ' ];
CMD = [ MEX, ' -c ', INC, '../submodules/quarticRootsFlocke/src/', LIB_NAMES2{k}, '.cc' ];
disp(CMD);
eval(CMD);
end
disp('---------------------------------------------------------');
for k=1:length(NAMES)
N=NAMES{k};
disp('---------------------------------------------------------');
fprintf(1,'Compiling: %s\n',N);
CMD = [ MEX ' -output ../matlab/', N, ' -I../src ../src_mex/mex_', N, '.cc ', LIB_OBJS ];
if isunix
CMD = [CMD, ' -lstdc++ -O2'];
elseif ispc
end
disp(CMD);
eval(CMD);
end
for k=1:length(LIB_NAMES)
delete([ LIB_NAMES{k}, '.o' ]);
end
disp('Install struct, io, statistics, optim package, it may take long time');
pkg install -forge struct
pkg install -forge io
pkg install -forge statistics
pkg install -forge optim
disp('----------------------- DONE ----------------------------');
The text was updated successfully, but these errors were encountered: