Lecture 6: How to multiply sparse matrices given in their triplet form?

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ก.ย. 2024
  • In this tutorial I have discussed how we can multiply 2 sparse matrices given in their triplet form.
    For watching my tutorial on Sparse matrix representation in Triplet and CSR form kindly refer to the following link:
    • Lecture 4: How to conv...
    For my tutorial on finding transpose of a sparse matrix in triplet form please refer to the following link:
    • Lecture 5: How to find...
    #sparsematrix #sparsematrixmultiplication #tripletmultiplication

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

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

    I was really frustrated when I was trying to find a decent tutorial of sparse matrix operations, and this video truly SAVED MY LIFE! Thank you very much Professor!

  • @李毅軒-i6s
    @李毅軒-i6s 10 หลายเดือนก่อน +1

    Amazing! It helps me a lot for my C++ homework!

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

    Teşekkürler hintli apla 🤠

  • @ANKITRAJ-pb5iy
    @ANKITRAJ-pb5iy 4 ปีที่แล้ว +1

    Amazing..!!!👍🏻👍🏻

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

    Good presentation 👍
    Carry on the good job 😊

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

    What's valuable about this tutorial is that it shows a practical application of this multiplication technique that I haven't seen in any other videos. What I think would help would have been to cover WHY this works (ie, by using the transpose of B). It would also be good to know how why spending the additional computing cycles to take the matrix provides benefit over simply doing a dot-product multiply. One other thing - I don't think the background music provides any benefit and is actually a quite distraction. But, thank you very much for providing this example.

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

      Firstly, I would like to thank you for viewing my tutorial and giving me a positive feedback. I guess I can make a tutorial on WHY this works, but that would be more of a mathematical approach. I think I can cover it when I make tutorials on Design and Analysis of Algorithms. I also agree with you regarding the background music. Actually its more of a beginners mistake in making video tutorials :-) I have learned from my mistake and have skipped adding any music to my recent videos. Hope you will enjoy them too. :-)

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

    nicelyy explained

  • @PriyankaSharma-gi2gn
    @PriyankaSharma-gi2gn 3 ปีที่แล้ว +2

    You didn't sort the resultant matrix. It was written in the algorithm in the last step. BTW nicely explained.

  • @kdharshan359
    @kdharshan359 6 หลายเดือนก่อน

    on what basis is the transpose of that matrix B given? I am unable to make no sense of it. Please explain

    • @sivavenkey1678
      @sivavenkey1678 4 วันที่ผ่านมา

      Just reverse rows and columns and arrange them in increasing order of rows

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

    Mam, can u post video on program of sparse matrix representation, addition, multiplication???
    In c++ program??

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

    How to transpose a matrix can you please tell it

  • @deven6491
    @deven6491 11 หลายเดือนก่อน

    idk how she made transpose of that matrix

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

    Why take the transpose?

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

      Because when you perform matrix multiplication, you multiply rows of the first matrix to the column of the second matrix...Here everything is enetered row-wise...hence transpose