Hi Joris thanks for sharing this. I'm a beginner with CasADi and didn't know about some of these features - being able to generate code from an opti stack formulation is really great :)
Dear Joris, thank you so much for this great tutorial, would you please provide the source code for the tutorial? The link is just loading and giving nothing!
Hi Joris, please would you kindly post the video recording of the casadi course. I am new to Casadi and not able to attend the course happening in March. The videos on mathematical background of Casadi would be highly appreciated.
How would one implement the function at 1:35 in Python a way that allows the function to take x and u as two different vectors? When I try to convert this to Python, I get the error: TypeError: unhashable type: 'list' Code is: x1 = SX.sym('x1') x2 = SX.sym('x2') u = SX.sym('u') x = [x1, x2] ff = [((1-x2**2)*x1 - x2 + u), x1] f = Function('f',{x,u},ff)
casadi graph computation is amazing.
Hi Joris thanks for sharing this. I'm a beginner with CasADi and didn't know about some of these features - being able to generate code from an opti stack formulation is really great :)
Thank you! It is so exciting to see such a tutorial!
Thank you so much for this video.
Dear Joris, thank you so much for this great tutorial, would you please provide the source code for the tutorial? The link is just loading and giving nothing!
Hi, how it could apply Casadi for MPC problems?
Hi Joris, please would you kindly post the video recording of the casadi course. I am new to Casadi and not able to attend the course happening in March. The videos on mathematical background of Casadi would be highly appreciated.
How would one implement the function at 1:35 in Python a way that allows the function to take x and u as two different vectors? When I try to convert this to Python, I get the error:
TypeError: unhashable type: 'list'
Code is:
x1 = SX.sym('x1')
x2 = SX.sym('x2')
u = SX.sym('u')
x = [x1, x2]
ff = [((1-x2**2)*x1 - x2 + u), x1]
f = Function('f',{x,u},ff)
x=vertcat(x1,x2)
f=Function('f',[x,u],ff)
amazing stuff,when will release new version
maybe making some tutorials will help others using casadi
Since it's a pretty old video, I doubt I will get an answer, but shouldn't we define the first state as x(:,0) instead of x(:,1) ?
its MATLAB, so no
amazing, Thank you!!!