Nonlinear MPC tutorial with CasADi 3.5

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 14

  • @chenchtabor
    @chenchtabor 4 роки тому +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 :)

  • @shanshanbond7040
    @shanshanbond7040 10 місяців тому

    casadi graph computation is amazing.

  • @ruoyuxu8934
    @ruoyuxu8934 3 роки тому

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

  • @muhammadadeel1150
    @muhammadadeel1150 4 роки тому

    Thank you so much for this video.

  • @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.

  • @user-yy5gq5by1h
    @user-yy5gq5by1h 4 роки тому +2

    Hi, how it could apply Casadi for MPC problems?

  • @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!

  • @dwangnoderbora
    @dwangnoderbora 6 місяців тому

    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  6 місяців тому +1

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

  • @pifinance3871
    @pifinance3871 2 роки тому +1

    maybe making some tutorials will help others using casadi

  • @fernandorecalde6062
    @fernandorecalde6062 3 роки тому

    amazing, Thank you!!!

  • @HD-qq3bn
    @HD-qq3bn 3 роки тому

    amazing stuff,when will release new version

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