Nonlinear MPC tutorial with CasADi 3.5

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 14

  • @shanshanbond7040
    @shanshanbond7040 ปีที่แล้ว

    casadi graph computation is amazing.

  • @chenchtabor
    @chenchtabor 5 ปีที่แล้ว +2

    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 :)

  • @ruoyuxu8934
    @ruoyuxu8934 3 ปีที่แล้ว

    Thank you! It is so exciting to see such a tutorial!

  • @muhammadadeel1150
    @muhammadadeel1150 4 ปีที่แล้ว

    Thank you so much for this video.

  • @BilalMubdir
    @BilalMubdir ปีที่แล้ว

    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!

  • @m99-f7i
    @m99-f7i 5 ปีที่แล้ว +2

    Hi, how it could apply Casadi for MPC problems?

  • @HassanKhan-cs8ho
    @HassanKhan-cs8ho 4 ปีที่แล้ว

    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.

  • @dwangnoderbora
    @dwangnoderbora 8 หลายเดือนก่อน

    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)

    • @jorisgillis4017
      @jorisgillis4017  8 หลายเดือนก่อน +1

      x=vertcat(x1,x2)
      f=Function('f',[x,u],ff)

  • @HD-qq3bn
    @HD-qq3bn 3 ปีที่แล้ว

    amazing stuff,when will release new version

  • @pifinance3871
    @pifinance3871 2 ปีที่แล้ว +1

    maybe making some tutorials will help others using casadi

  • @asdas1768
    @asdas1768 2 ปีที่แล้ว

    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) ?

  • @fernandorecalde6062
    @fernandorecalde6062 3 ปีที่แล้ว

    amazing, Thank you!!!