You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that I encounter the same error in any other execution of the other tests:
>> testBenchmark
solver time: 0.022939
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the number of rows in
the second matrix. To operate on each element of the matrix individually, use TIMES (.*) for elementwise multiplication.
Error in MPCCBF/sim (line 33)
xk = self.system.A * xk + self.system.B * uk;
Error in testBenchmark (line 52)
controller_mpc_cbf.sim(time_total);
Related documentation
>> testGamma
Run MPC-CBF with gamma 0.100000
solver time: 0.021581
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the number of rows in
the second matrix. To operate on each element of the matrix individually, use TIMES (.*) for elementwise multiplication.
Error in MPCCBF/sim (line 33)
xk = self.system.A * xk + self.system.B * uk;
Error in testGamma (line 50)
controller_mpc_cbf_list{ind}.sim(time_total);
Related documentation
>> testHorizon
solver time: 0.030083
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the number of rows in
the second matrix. To operate on each element of the matrix individually, use TIMES (.*) for elementwise multiplication.
Error in MPCCBF/sim (line 33)
xk = self.system.A * xk + self.system.B * uk;
Error in testHorizon (line 48)
controller_mpc_cbf_1.sim(time_total);
Related documentation
Is there any other place where to look for an IPOPT version that works on Windows?
The text was updated successfully, but these errors were encountered:
I have just installed matlab on Ubuntu 20.04, used the Ipopt zip file provided for linux, and installed the YALMIP master according to instructions.
And I've got the exact same problem:
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the
first matrix matches the number of rows in the second matrix. To operate on each element
of the matrix individually, use TIMES (.*) for elementwise multiplication.
Error in MPCCBF/sim (line 33)
xk = self.system.A * xk + self.system.B * uk;
Error in test (line 115)
controller_mpc_cbf_one.sim(time_total);
Related documentation
The only code that succeeds is the first part of test.m where DCLF-DCBF is executed.
Thanks for sharing the code with the research community!
The solution proposed by @Highlight123 in #8 seems not to be working for me.
I'm using MATLAB 2023b on Windows 10 Enterprise
packages
folder and adding it to the MATLAB path as well.When running the
test.m
example file, I encounter the following error when the MPC-CBF portion of the code is executed:Note that I encounter the same error in any other execution of the other tests:
Is there any other place where to look for an IPOPT version that works on Windows?
The text was updated successfully, but these errors were encountered: