Thanks a lot ma'am. I was having so much difficulty in understanding that why do we need to take k variable but u explained it so well. Thank you so much ma'am.
I was struggling with why do we take 'k' variable. You have illustrated every single thing very beautifully. Even the way you have described the purpose of each variable....hats off. Thank you so much.
@@Aman_sharma_uk it's initiate N=50 throughout the source code., so for example int a[N][N] so it means int a[50][50] int b[50][50] and so on, as long as there is a N, it's initiate automatically to 50 cmiiw
Pehle mujhe programming krne Mai bhot problem hoti thy phir ek din Mausi ne bataya ke Jenny mam ke lectures Dekh lo, ab Mai programming accche se kr pata hun.. Thanks mam.. lots of love from my side.. stay safe & happy
I cant believe I've understood the 3rd variable k 😂😂 To those struggling with it.. Assume k is just a number position. K is common because it means (1st row A element)×(1st colum B element) (2nd row A element)×(2nd column B element) (3rd row A element)×(3rd column B element) K simply stands for 1st, 2nd and 3rd which have to be the same for row of A and column of B.
i think there is a mistake in your program which is third loop's condition. because the condition must be k < n instead of k < m it works only when the 1st Matrix is in square Matrix because of the value m = n, for example if the 1st matrix will be 2×3 then the multiplication part will give an error or wrong answer
Jenny ma'am. I started your lectures maybe back in September 2022 and I'm here now. I've watched every video in order and an continuing until the end by the grace of God. I studied linear algebra in college so this was a good lecture which incorporated a C program and matrices. Thank you so much!
!!!Data Structures & Algorithms on free now!!! Program for Multiplication of Matrices i.e. multiplication of two 2D array ua-cam.com/video/5m0jputa9CQ/v-deo.html
literally mam i have no words how can i thank you on monday i have a programming paper and i am preparing from your lecture i hope i will do my best my programing is not good but just bcz of your lectures i am gaining so much knowledge thank you so much mam god bless you mam from pakistan
Heaven! Mam,i was for real mourning to decipher this,u have elucidated every nitty griity detail so exquisitely!!! Tons of thanks! Love from Hyderabad ❤
You are Great Mam❣️Before this, That question was to be impossible to solve for me but You cleared my all the doubts involved in this particular question, Thanks a Bunch Mam❣️
Mam you teach deeep due to which we can easily learn everything about the concept I struggle many more to find the teacher like u on UA-cam there are many vedio in which concept are clear by a short vedio and never explain everything
i am very lucky to born in your generation🥲...tomorrow we have lab , today i got clarity about the concept😄....thank you so much mam...i am thankfull to you
Thank you from the deepest part of my soul madam, because of your knowledge and your guidence, I shall rejoice in my way into the abyss that we know as computer science✍
oh yes,i found this concept hard ,after watching this video i still get confused butttttt i literaly watch this video evey night for once or twice after 3 days now i understand..tq ....
suppose 2 matrices a(3*2) and b(2*2) are to multiply. how k loop will work as k is taking up to m (here for 3 rows are taken in m) i.e. for the element a[0][2]*b[2][0] k has to continue the loop but no value is there in a matrix. here multiplication is possible but cant understand k loop here. PLEASE REPLYYY
K is imaginary and it simply stands for the positions of the row element of a anf column element of b. K is common because the 1st is multiplied with the 1st, 2nd with 2nd, 3rd with 3rd etc........ In your case k is only 2 because the rows of a are 2 and colums of b are 2. I hope you understood it already and am just helping another stuckee😊
Thanks a lot ma'am. I was having so much difficulty in understanding that why do we need to take k variable but u explained it so well. Thank you so much ma'am.
@@bhumikasharma5591 kth wala hi dikt de raha hai
I was struggling with why do we take 'k' variable. You have illustrated every single thing very beautifully. Even the way you have described the purpose of each variable....hats off. Thank you so much.
Same here really (Thank you Mam very very much) You teach us very clearly. THANK YOU
why we use #define 50 as a header//? i didn't get that consept plz reply.....??
@@Aman_sharma_uk please reply if anyone knows this
@@Aman_sharma_uk it's initiate N=50 throughout the source code., so for example int a[N][N] so it means int a[50][50] int b[50][50] and so on, as long as there is a N, it's initiate automatically to 50
cmiiw
for the same k varaiabke
Pehle mujhe programming krne Mai bhot problem hoti thy phir ek din Mausi ne bataya ke Jenny mam ke lectures Dekh lo, ab Mai programming accche se kr pata hun..
Thanks mam.. lots of love from my side.. stay safe & happy
I think in program third loop :-
for(k=0;k
BASICALLY THEIR IS A MISTAKE IN THE CODE OF THE MATRIX THE K LOOP SHOULD BE WRITTEN (K
Damn, iwas about to comment same thing 😅
yes,here as m=n the answer is correct
Yep...as condition is that n==p.....and matrix will be of m x q
Thanks bro
Bro isn't it's m itself
You are the best teacher may God bless you with best job and comfortable life
I cant believe I've understood the 3rd variable k 😂😂
To those struggling with it..
Assume k is just a number position.
K is common because it means
(1st row A element)×(1st colum B element)
(2nd row A element)×(2nd column B element)
(3rd row A element)×(3rd column B element)
K simply stands for 1st, 2nd and 3rd which have to be the same for row of A and column of B.
👍
Yy mam took k
@@rahulrakeshpoojary947 yes
k will be either n or p.
Tnx❤
Thanks Ma'am your lecture is way more easy than the lectures got from my college.
i think there is a mistake in your program which is third loop's condition. because the condition must be k < n instead of k < m it works only when the 1st Matrix is in square Matrix because of the value m = n, for example if the 1st matrix will be 2×3 then the multiplication part will give an error or wrong answer
Yep...as condition is that n==p.....and matrix will be of m x q
i found this concept very confusing everywhere but after watching your video 2 times , it will become buttry smooth 🙏🙏🙏
In the program, you have mentioned "k
Yes bro you are ringht, it should be k
same doubt i had.
Mam k< n or k
Jenny ma'am. I started your lectures maybe back in September 2022 and I'm here now. I've watched every video in order and an continuing until the end by the grace of God. I studied linear algebra in college so this was a good lecture which incorporated a C program and matrices. Thank you so much!
// There is a correction K will be less than n or p.
// If u will do K
in for loop for k condition could be either k
Mam if we take 4 cols in first matrix then k
Hmm
Actually I was also thinking that 🙄
exactly
!!!Data Structures & Algorithms on free now!!!
Program for Multiplication of Matrices i.e. multiplication of two 2D array
ua-cam.com/video/5m0jputa9CQ/v-deo.html
@NeUtRiNO x GaMiNg mam said k should be less than number of coloums of first or rows of second matrix so why is she taking k < m
Thank you ma'am for this amazing session.
Mam's code is running because mam has taken m=3,n=3,and p=3....so the output is coming even if she is taking k
How can learning of c programming be so easy ? Hat's off to you❤️👏!
20:05 typo. K loop should be k
Exactly but code run krra hai mam ka
Kyu?
Yes but how mams code is running 🤔
Mam's code is running because mam has taken m=3,n=3,and p=3....so the output is coming even if she is taking k
Thank you, I was struggling with the same thing.
literally mam i have no words how can i thank you on monday i have a programming paper and i am preparing from your lecture i hope i will do my best my programing is not good but just bcz of your lectures i am gaining so much knowledge thank you so much mam god bless you mam from pakistan
Heaven! Mam,i was for real mourning to decipher this,u have elucidated every nitty griity detail so exquisitely!!! Tons of thanks! Love from Hyderabad ❤
Mam you are spreading such a positive aura. I am blessed for getting a teacher like u.
At last....i understood 😌
That explanation on board was superbbb!!!!
Hello mam, I found mistake in your program. That is in 59 statement k
Beautifully explained 😍
Was struggling with this for a couple of hours
Subscribed ❤️
you are my god sometimes while doubts in programme
Thank you miss Jenny. I understood fully why we need to use the variable k now in our matrix multiplication code :)
The way you taught, made my coding easy mam thank you.
Thanks a lot sis...after long struggle I was hpy now after seeing this video...I understood ❤️❤️❤️
this was very confusing for me i have watches lots of video but after watching this my concept is clear. thank you😊
Thank you so much, u are the best for explaining hard things until it becomes so clear and easy 🌹🌹🌹
Mam in line 59 ,it would be k
Yes exactly but then why code is not giving any error
Madam ke ek hi lecture me samajh gaya.. nahi toh pura utube idhar udhar kar diya tha 👍
You are Great Mam❣️Before this, That question was to be impossible to solve for me but You cleared my all the doubts involved in this particular question, Thanks a Bunch Mam❣️
Mam you teach deeep due to which we can easily learn everything about the concept I struggle many more to find the teacher like u on UA-cam there are many vedio in which concept are clear by a short vedio and never explain everything
16:21 😍 that smile...
Excellent explanation, all my doubts get cleared watching this video
Best possible explanation, especially why do we need k variable.
Thank you Didi ❤
Thank you so much ma'am. Watching from Bangladesh as a 1st year CS student
Mam ur teaching is next level no words to describe ur explanation
What an Amazing Teacher you are...🙌🙌🙌
Thanks ma'am for clearing our doubts love the way you teaching
Great!! Finally got to know how matrix multiplication works.
Hi mam..in k loop we have to write k
i am very lucky to born in your generation🥲...tomorrow we have lab , today i got clarity about the concept😄....thank you so much mam...i am thankfull to you
Your teaching is nice❤❤
thankyou mam, the k variable concept became very easy with your teaching💗
20.6
there is a mistake
range of k is k
bhai mam ko nhi dekhte ho ky pdhte rhte ho bs
Thank you madam
Now I feel very relief.
A lot of stress is gone
And ur so beautiful ❤️
Love madam with my heart
Kya kamaal ki teacher ho
Your eyes speaks even before you speak 🙊
Teacher ki izzat karna seekhle, g@ndu,
k should be less than n (k
Exactly Yrr that’s what I am thinking k< n or P
Yep...as condition is that n==p.....and matrix will be of m x q
Thank you from the deepest part of my soul madam, because of your knowledge and your guidence, I shall rejoice in my way into the abyss that we know as computer science✍
thanks mam , i was confused in this multiplication from 4 days , finally found this ...
How simply u explain 👍👍
Thank you mam 💯
In love with jenny's lectures!!
There will be k
I just love ur explaining style
mam love your teaching style ❤❤❤❤
Ma'am we can also initialize c[i][j]=0 in the k loop and perform like c[i][j]=c[i][j]+a[i][k]*b[k][j] .
yes
Thanks Mam your way of explaining concepts is too good ❤❤
Hi mam,
I have doubt,
Here you told "K" Value is upper bound value.
i.e Columns of 1st Matrix Or Rows of 2nd Matrix(n==p). But you taken "m"
for(k=0;k
Your teaching is really awesome ma'am...
Mam, why u should not write k
Thank you mam for clearing my doubt
i was confused about the K variable
😅subject is understanding but in a slow way but those expressions made me understand everything and feeling shy for those cute things 🥰
oh yes,i found this concept hard ,after watching this video i still get confused butttttt i literaly watch this video evey night for once or twice after 3 days now i understand..tq ....
Love you ma'am for this amazing video 🥰🥰🥰🥰🥰🥰🥰
Line no 59
for(k=0;k
yes there either be n or p bcz n =p and
the new matrix we formed is that m*q form
but in mam line no. 59 is m there that is inncorrect .
👍
we just love your dry run mem❤
Thnx for uploading ma'am 🙏🙏🙏
Thanku for giving clear conception of Array❤️
thank you so much ...........lots of love and respect
Very nice explanation! 😎
Beautifully explain
Much better than my college
Hey
Do you have notes of her video??
Ma'am, you're angel from heaven. I'm watching this on 14th July, 2023 at 3:23 am in the morning.
Thanks a lot ma'am. It is crystal clear now.
2Marow is my 1St sem exam... Today I'm watching ur videos💕💕😻😻
We love your explanation madam!!!
I solve it like you , exactly!! But 1 question why he didn't work for example matrix 1 : (2,3) and matrix (3,1)
thank you mam
Thank you very much ma'am
Thanks..now i got it properly
Thank you very much dear And then your voice very gud
wow this was really good video thanks ma'am
Yes mam ise hm math me calculation kr rhe h but yha to iska program hi 🤯🤯
Lot of LOVEs from Pakistan 🇵🇰
NICE SUPER EXCELLENT MOTIVATED
Mam. You like teach my mam
And. Your eye looking very very beautiful😍😍😍❤
VS Code editor is the best🔥
Superb understanding
I need to multiply the matrix with its tranpose in the same program. please let me know how i can do that
suppose 2 matrices a(3*2) and b(2*2) are to multiply. how k loop will work as k is taking up to m (here for 3 rows are taken in m) i.e. for the element a[0][2]*b[2][0] k has to continue the loop but no value is there in a matrix. here multiplication is possible but cant understand k loop here. PLEASE REPLYYY
K is imaginary and it simply stands for the positions of the row element of a anf column element of b. K is common because the 1st is multiplied with the 1st, 2nd with 2nd, 3rd with 3rd etc........
In your case k is only 2 because the rows of a are 2 and colums of b are 2.
I hope you understood it already and am just helping another stuckee😊
k
@@sarcasticboy4507 yes you're correct
made the complex problem easier
Ohhh..... What a program !!! If I have to code such a huge program then my finger will be😰😨
Rows mean horizontal column is vertical
Literally waiting for your today's video mam 👍🏻🙏🏻
Thank you mam 😊 💖😊💖