Linear Regression 1 [Matlab]

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

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

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

    I recommend watching the regression sections multiple times; tons of points to learn and to look in the references. Extraordinary tutorials, thanks Steve.

    • @hassaanhameed
      @hassaanhameed 10 месяцев назад +1

      i replay the video after reading your comment I need to watch it again after testing on the real data

  • @user-ym8rz6mw5r
    @user-ym8rz6mw5r 2 года назад +1

    wow, good job! I take back what i said about you lacking examples. this is top stuff

  • @danielhoven570
    @danielhoven570 4 года назад +4

    Just got your book! can't wait to dig in

  • @dragoncurveenthusiast
    @dragoncurveenthusiast 4 года назад +2

    9:18 I think b = a*x would be more accurate than b = anoisy*x.
    After all, it is the true factor a that has an influence on b, not the noisy measurement we took of a.
    I think this is the reason why the plot looked so much better than expected, also at 7:58, the noise was added to a before calculating b from a, so the noise didn't influence the relationship between a and b.

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

    Thank you for the excellent explaination, looking Forward for more Video

  • @songurtechnology
    @songurtechnology 4 месяца назад

    Thank you ❤

  • @adricat59
    @adricat59 4 года назад +1

    Really useful, thanks!

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

    How can one calculate the uncertainty with svd?
    Say that we have uncertainty in both a and b, based on the uncertainty the slope and intercept of y should have uncertainty as well, can you please elaborate how to calculate the uncertainty in the slope and intercept.
    Thanks in advance.

  • @x1x2x125
    @x1x2x125 4 года назад

    Great video!

  • @vvviiimmm
    @vvviiimmm 4 года назад

    9:18 More like "the danger of mutable variables" :) Thanks for sharing, keep it up

  • @lingnie2809
    @lingnie2809 2 года назад

    just out of curious. Is that a 13'' macbook or 16'' macbook?

  • @HuadongWu
    @HuadongWu 4 года назад

    the first method demon [time 6:45 - 7:19] is problematic explained as following: [U,S,V]=svd(a,'econ') input a doesn't change slope, so [U,S,V] won't change characteristics, xtilde=V*inv(S)*U'*b won't change its distribution from b's characteristics

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

    When using the SVD command, you input your array a as a 1d array. This doesn't work in python. Does anyone know how to do this in python with a 1d array?
    Thank you

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

      I understood what the problem was when watching the corresponding video in Python.

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

    x=a\b

  • @x1x2x125
    @x1x2x125 4 года назад

    First!

  • @younique9710
    @younique9710 4 месяца назад

    After we added some noise to a, should we run SVD with the noisy a rather than a in the 11th commend of the MatLab?