Solving differential equations in R

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024
  • How to solve some simple differential equations in R.

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

  • @spacelem
    @spacelem Год назад +1

    Note that it's pretty usual (it even presents it this in the help) to pass your state variable in the form y0 = list(N=2), p=list(r=0.5, K=1000) then you'd wrap the body of clogistic() with(c(y0, p), {...}) and can use your states and parameters directly, i.e. N, r, K, instead of the less obvious y[1], p[1], p[2].
    clogistic

  • @LT-dl7jw
    @LT-dl7jw 5 лет назад +2

    Dear Tom, Could you gives us an example on how to solve 1st order partial differential equations?

  • @pyrinefas
    @pyrinefas 5 лет назад

    very helpful. thumbs up

  • @engr.abdullahazzamsafi4515
    @engr.abdullahazzamsafi4515 2 года назад

    Can you please explain some line of codes if we have different variables data for period of time in excel sheet. Thank you

  • @aldoyactayo05
    @aldoyactayo05 3 года назад

    Hi, nice video. I got a question. What should I do in case I would have a data base and have to do a simulation for any row of the data? Thanks!

  • @mathgmathg923
    @mathgmathg923 6 лет назад

    your videos are very helpful. thank you very very much. can you make a playlist on CROSS VALIDATION, LDA/QDA, PCA,SVM i would really appreciate it!!!! thanks in advance

  • @Dr.munna89
    @Dr.munna89 3 года назад

    Dear sir, can you please explain, Kuznets Curve in R. Please sir.

  • @babakjfard
    @babakjfard 9 лет назад

    How can I control my model to not produce any negative values? (or any number below 1e-6 to consider as zero). I could not find any option not in ode nor Isoda function.
    Thank you so much for your answer.

    • @LT-dl7jw
      @LT-dl7jw 5 лет назад

      Have you found an answer? If you still need it I can share my code