Linear Regression 1 [Matlab]

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

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

  • @payman_azari
    @payman_azari ปีที่แล้ว +3

    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 ปีที่แล้ว +1

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

  • @danielhoven570
    @danielhoven570 4 ปีที่แล้ว +4

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

    • @Eigensteve
      @Eigensteve  4 ปีที่แล้ว +1

      Awesome! Thank you!

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

  • @Старкрафт2комедия
    @Старкрафт2комедия 2 ปีที่แล้ว +1

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

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

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

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

  • @adricat59
    @adricat59 4 ปีที่แล้ว +1

    Really useful, thanks!

  • @songurtechnology
    @songurtechnology 7 หลายเดือนก่อน

    Thank you ❤

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

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

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

    Great video!

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

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

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

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

    x=a\b

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

    First!

  • @younique9710
    @younique9710 7 หลายเดือนก่อน

    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?