Matrix Multiplication | C Programming Example

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ม.ค. 2025

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

  • @plutomessi21
    @plutomessi21 2 ปีที่แล้ว +6

    Thank you so much man, really if you had not uploaded your videos I would have definitly never been able to understand these concepts.
    I admire your patience while teaching and I am really really greatful

    • @PortfolioCourses
      @PortfolioCourses  2 ปีที่แล้ว

      You're very welcome and thanks so much for the kind words. :-) It really means a lot to me to hear that these videos are helping people like yourself.

  • @SihayaBellydancer
    @SihayaBellydancer 2 ปีที่แล้ว +1

    Amazing explanation! Thank you!!!

    • @PortfolioCourses
      @PortfolioCourses  2 ปีที่แล้ว

      You're very welcome, I'm glad it was helpful! :-)

  • @RasamRohit
    @RasamRohit ปีที่แล้ว

    is there a more efficient way of doing this matrix multiplcation?

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

      If we have parallel processing we can use algorithms like Cannon’s algorithm to speed things up. :-)

  • @MirxVisuals
    @MirxVisuals ปีที่แล้ว

    Matrix_multi would be O(N^3) right?

    • @PortfolioCourses
      @PortfolioCourses  ปีที่แล้ว

      Yes, that's correct. :-)

    • @sumantkumar5600
      @sumantkumar5600 3 วันที่ผ่านมา

      But if you do matrix multiplication by strassen method then TC will be O(n^2.8).