Open phr0gger opened 6 months ago
Hello, I am trying to run Experimental.m under Octave 9.1 (Windows). Apparently, some additional packages are needed. Could you specify, please?
Could you provide more details about the issue with running the code? If the problem occurs at the point of running LMI_AXYB.m, you need to check if your Python environment (venv) is properly set up. Please refer to the README document for detailed instructions.
I got it to run under Octave after reading https://github.com/petercorke/robotics-toolbox-matlab/wiki/Octave-compatibility and adding these lines to Experimental.m:
function v = verLessThan(s1,s2)
v = true;
end
pkg load io
addpath rtb/ common/ smtb/
I also noticed some naming errors in li_AXYB.m
Hello, I am trying to run Experimental.m under Octave 9.1 (Windows). Apparently, some additional packages are needed. Could you specify, please?