Indexing Values in a Matrix in Matlab

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

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

  • @Skibow17
    @Skibow17 5 ปีที่แล้ว +32

    this is high quality ASMR matlab tutorial... didn't think this string of words would ever be together in a sentence

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

    most wholesome matlab video i have ever seen.. i came in raging anxiety to finish an assignment, left with a warm heart full of wholesomeness... thank you

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

    This was very helpful. I was trying to learn more about Array Indexing and this video was great! thank you!

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

    This video deleted all quesiton marks on my mind. Thanks!!!

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

    Your typing in conjunction with your voice is so satisfying. BTW thanks a bunch for awesome tutorial : )

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

    Thank you so much! I'm taking a beginners course in MATLAB and you helped me a lot. Keep up the great work!

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

    I really like the sound of your voice💓

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

    Thank you so much, mam! This is so helpful! So glad to know your channel.

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

    I LOVE YOUR VOICE AND CLICK CLACKING ON THE KEYBOARD
    keep doing what you're doing making ppl snuggly and happy w mathtime

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

    Saludos a los del Tec21, haciendo su primera actividad :) (Y que buen video con un toque de ASMR).

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

    Nice explain

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

    I should have paid rather than paying those morons. Just loved the way you showed it

  • @licenceconstruction993
    @licenceconstruction993 6 ปีที่แล้ว

    thank you very much, your voice is very very sweet..

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

    Your voice is so nice.

  • @ILOVEUSAFIFTY
    @ILOVEUSAFIFTY 7 ปีที่แล้ว

    You are my real Mam...GOD bless you

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

    thanks for video, could you please explain ind2sub function?

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

    thanks.....could you please show us how to extract a row that contains the minimum value of a specific column

  • @khalednayel6766
    @khalednayel6766 8 ปีที่แล้ว

    asking for finding the minimum value of a specific column and then extract its full rowthanks again .....so much

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

    so sweet

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

    Did she use a typerighter that keyboard is getting a beating

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

    how to find the index of the value for example 1.5e-7 ?

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

    Hay could you help me put with this one: how to call out forexample only even rows and even columns? Thanks advance ;-)

  • @omniaazooz8009
    @omniaazooz8009 6 ปีที่แล้ว

    Thank you a hundred ^^

  • @imtiazhabib5029
    @imtiazhabib5029 6 ปีที่แล้ว

    Thank you so much .

  • @jihadabdulhaq
    @jihadabdulhaq 6 ปีที่แล้ว

    I want to give you hundred likes . . .

  • @naiduyerra727
    @naiduyerra727 6 ปีที่แล้ว

    hai
    we are generating some values in matalb
    we have to store the values and compare between them to get highest value
    where to store the generated values in matric or array?
    we are not able to store them?
    plzz help
    tanq

  • @muhammadsiddiq6310
    @muhammadsiddiq6310 6 ปีที่แล้ว

    nice one ;)

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

    hi, was wondering if you could do a video on Tic Toc functions pleaseee i cant figure out how to run it for some reasons idk what im doing wrong lol

  • @sibongakonkepraisegodbuthe4480
    @sibongakonkepraisegodbuthe4480 5 ปีที่แล้ว

    Thank you.

  • @BenBilesBB-box
    @BenBilesBB-box 5 ปีที่แล้ว

    thank you :)

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

    hi, can you help me in matlab?

  • @bhuwanbisht2488
    @bhuwanbisht2488 7 ปีที่แล้ว

    thankyou so much

  • @po-hengchen6183
    @po-hengchen6183 8 ปีที่แล้ว

    nice

  • @ronpearson1912
    @ronpearson1912 6 ปีที่แล้ว

    What if I wanted to reference A(1,1) within the same matrix A = [ 1 2 3 4 A(1,1)]? I get an error when I try to do this. A(1,1) should just be 1.

    • @snugglemath
      @snugglemath  6 ปีที่แล้ว

      That's a recursive reference, so you can't do that. You'd have to do A = [1 2 3 4] and then on the next line say something like A(end+1) = A(1,1).

    • @ronpearson1912
      @ronpearson1912 6 ปีที่แล้ว

      @@snugglemath or this - A = [1 2 3 find(1,1)]

    • @ronpearson1912
      @ronpearson1912 6 ปีที่แล้ว

      this just seems to return a value of 1 no matter what ugh

    • @ronpearson1912
      @ronpearson1912 6 ปีที่แล้ว

      @@snugglemath A = [1 2 3];
      A = [ 1 2 3 A(1,1)]; % to perform A(1,1) it has to be defined before using

  • @JKA-sf7ll
    @JKA-sf7ll 4 ปีที่แล้ว

    (2,3,4,:) answer???

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

    Buy a good keyboard please