Natural Cubic Spline Interpolation Example | Numerical Methods

Поделиться
HTML-код
  • Опубликовано: 4 янв 2025

Комментарии • 15

  • @siyabulelamanona1438
    @siyabulelamanona1438 9 месяцев назад +2

    This helped so much.... Best video I have seen by a mile and will be sharing with all my classmates

  • @infinitedeathloop5517
    @infinitedeathloop5517 Год назад +6

    Underrated! Thanks so much man!!! This is so helpful!!!

    • @StudySessionYT
      @StudySessionYT  Год назад

      Glad you liked it! Thank you for watching!

    • @infinitedeathloop5517
      @infinitedeathloop5517 Год назад

      @@StudySessionYT Hi i was also wondering, assuming my dataset tends to an asymptote at the end, how would i use cubic spline interpolation to adjust for that? I fit the data using that however, it doesn't accurately mimic asymptotic behavior. Is there anything i can do so that i can make it so?
      Thank you :)

  • @DArnez-c5n
    @DArnez-c5n 5 месяцев назад

    Bro this is crystal clear. Thank you so much for help

  • @hyperkulla7544
    @hyperkulla7544 Год назад +6

    Don't you need to substitute (x-1) , (x-3),(x-5)... to x in those polynomials?

  • @MrThib98
    @MrThib98 Год назад

    Incredible vidéo, thank you very much !!!

  • @muhannedalsaif153
    @muhannedalsaif153 Год назад +2

    beautiful! thank you

  • @sophiachiha9447
    @sophiachiha9447 9 месяцев назад +1

    Is it possible to get access to the python code?

  • @zirkq
    @zirkq 7 месяцев назад +1

    unbelievably goated

  • @nurfatinnabilah1764
    @nurfatinnabilah1764 Год назад

    how to find the natural Cubic Spline Interpolation in parametric form?

    • @oluwaferanmi100
      @oluwaferanmi100 8 месяцев назад

      If you are using MATLAB, it is just as easy as saying:
      syms x
      % and let's say you need the cubic function in the first segment
      y1 = a1*x^3 + b1*x^2 + c1*x + d1
      In Python you can use
      import sympy as sym
      x = sym.Symbol('x')
      # this should work as well

  • @blendcreator
    @blendcreator Год назад

    Can somebody explain, how to calculate a,b,c and d?

    • @StudySessionYT
      @StudySessionYT  Год назад

      It is just a linear system of equation. This video may help: studio.ruclips.net/user/videoEjFptcxgw28/edit