Glad it was helpful! Please make sure you subscribe to the channel here kzbin.info
@frankfernandez64245 жыл бұрын
I think I've been watching for....a year and a half now? Love those videos
@dominickirk54115 жыл бұрын
It's interesting! 👀
@leifboyle9945 жыл бұрын
lovely video
@ryleewatsica71225 жыл бұрын
Best ever🔥
@matthewkelly84455 жыл бұрын
Getting Better All The Time💖
@walterrape53815 жыл бұрын
Spectacular ! Keep them 🇨🇴
@charlesketcham67435 жыл бұрын
Yessss! this!
@treverjenkins70805 жыл бұрын
You are literally god 😍
@wileywiegand69765 жыл бұрын
⭐⭐⭐Great👌 vid⭐⭐⭐
@emiliacofer5495 жыл бұрын
good💝 certainly this Keep it up!📷
@AhmadBazzi5 жыл бұрын
thank you :)
@myrlruecker12505 жыл бұрын
❤❤❤❤❤❤🔥🔥🔥
@santiagohills63645 жыл бұрын
Awesome🙏💞💋💘
@Rainstorm1213 жыл бұрын
Thanks Sir. When you use matlab to analyze data, what is the logic here? Do we use metrics and arrays for the data before we analyze them? Or what is the main logic behind arrays and matric in data analysis? New beginner to programing in general here.
@lilianewalter8275 жыл бұрын
💎Ace
@margiebeier76955 жыл бұрын
Loveely 💙👏
@jadeprice83695 жыл бұрын
🔥
@nathankay31235 жыл бұрын
Ayyyyeee 🌺🌺
@remcovanwoerkom20162 жыл бұрын
is it possible to make a list of matrices? aka a vector, for which each index is in iteslf a matrix? For example: let there be 4 matrices, a, b, c and d. I want to make a list with dimensions 4x1: list = [a, b, c, d] and when i call list[1] i want it to output the entire matrix a
@piamontedanselanthony88123 жыл бұрын
Just a beginner how do i input this?Using the ones and zeros commands, create a 4 x 5 matrix in which the first two rows are 0s and the next two rows are 1s.
@AhmadBazzi3 жыл бұрын
Hey Piamonte, yes well you can do something like this [zeros(2,5);ones(2,5)] The zeros(2,5) creates a 2x5 zeros matrix, the ";" means go down one row and ones(2,5) creates a 2x5 ones matrix. Hope that helps
@piamontedanselanthony88123 жыл бұрын
Thank you so much
@isabellawalker38765 жыл бұрын
❤️️
@wilmageorge59465 жыл бұрын
CHEERS!!✌️
@noeldiaz13544 жыл бұрын
I have 3 matrices, a, b and c and I want make a new matrix with 3 columns column a for a item's column b for b items etc So I want to display the results of a b and c in a 3 column matrix, how do I do that? R = [a; b; c;] will give 3 rows and display its elements horizontally I want 3 columns and display its elements vertically
@AhmadBazzi4 жыл бұрын
Two ways: 1) Take your way R = [a; b; c] then do R = transpose(R) 2) instead of semi-columns, use commas or whitespace, that is R = [a b c] Hope this helps
@lawrenceharbin45455 жыл бұрын
🙏😙😙💘
@walterstewart6265 жыл бұрын
🤔 I've been for....a year and a half now? those
@AhmadBazzi5 жыл бұрын
almost a year !! thank you for the support !!
@alexanderosei16703 жыл бұрын
Can you solve this matrix vector A = [ 1 2 3 4; 1 2 3 4] B= [ 12; 15 ] inv[A]*B I am stacked and can solve