Using Meshgrid in Matlab

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024
  • A quick review of how meshgrid works.

Комментарии • 34

  • @pedroneves8485
    @pedroneves8485 5 лет назад +25

    this was like the sweatess tutorial i have ever seen . the intro made me giggle . this video was a great help

  • @MrAbIRaZ
    @MrAbIRaZ 7 лет назад +7

    The only video available in the Internet that explained what meshgrid actually does.

  • @Aslan7is7alive
    @Aslan7is7alive 9 лет назад +22

    I really didn't get the purpose of meshgrids. Now I do (at least one of the purposes). Thank you very very very much. Very helpful.

  • @tienthangdinh7733
    @tienthangdinh7733 5 лет назад +3

    live savior! people always use meshgird function but no one explained me what it's purpose is, thousand times thank you for this tutorial

  • @adriansalt4521
    @adriansalt4521 3 года назад +5

    Just had to say what an AMAZING explanation you gave on this function - really, it was so well explained, and thank you so much!!

  • @sndik16
    @sndik16 7 лет назад +4

    I love your explanation. I am using numpy/python, and even though you are doing it in Matlab, I understood finally the meshgrid. Merci beaucoup!

  • @tobechukwublessed4274
    @tobechukwublessed4274 9 месяцев назад

    thank you. 9 years into the future and it is still efectual

  • @adelsalam9735
    @adelsalam9735 Год назад

    thank you so much for coming back.

  • @isurumahakumara
    @isurumahakumara 4 года назад +1

    ❤️❤️❤️
    Lovely Tutorial. Please keep making more videos

  • @zhin13
    @zhin13 8 лет назад +3

    Writing a Numerical methods test tomorrow, thank you so much!!!

  • @quocvytruong6462
    @quocvytruong6462 4 года назад +3

    your sweet tutorial make my day XD ! thanks a lots

  • @laural614
    @laural614 2 года назад

    This was extremely helpful. Thank you very much for sharing.

  • @kunalchatterjee5310
    @kunalchatterjee5310 5 лет назад +1

    Thank you for the explanation! The sweetest explanation :D

  • @maramam5024
    @maramam5024 3 года назад

    thanks a lot this is really helpful and you make it very easy to understand, I love your personality too

  • @joaoelias3933
    @joaoelias3933 6 лет назад +2

    meshgrid is more used to plot 3D graphics, example [X,Y] = meshgrid(0:3,0:4), when you define the function at Z it gives you a graphic where the x axis goes from 0 to 3 and the y axis goes from 0 to 4, right?

    • @otonielfernandes9485
      @otonielfernandes9485 6 лет назад

      So mesmo isso parceiro? Eu tou tentando entender isso faz tempo

  • @robg5513
    @robg5513 6 лет назад +1

    Thanks. One thing which I would find handy would be for you to put up the code that you're typing in the description. I bet heaps of other people are trying to type and listen at the same time poorly (like me!). Good video though - enjoyed your lyrical energy.

  • @anheruan
    @anheruan 5 лет назад

    So simple example and very useful ¡ Thank you ¡

  • @sayanjitb
    @sayanjitb 4 года назад

    What does 'ndgrid' do then? Can anyone help me, please!

  • @philipvankampen
    @philipvankampen 9 лет назад

    thank you!!!! Great explaination of meshgrid

  • @lrellisderth118
    @lrellisderth118 6 лет назад

    Awesome tutorial!

  • @haveanicetime
    @haveanicetime 6 лет назад +1

    Vielen Dank!

  • @maxtop34
    @maxtop34 5 лет назад

    thank you so much madame !

  • @kroomsami1182
    @kroomsami1182 9 лет назад

    thank you , it is helpful

  • @mariorosa6540
    @mariorosa6540 6 лет назад

    You the best!

  • @bunyaminkasikci5211
    @bunyaminkasikci5211 8 лет назад

    that was helpful! :)

  • @TusharSrivastava-raziel121
    @TusharSrivastava-raziel121 8 лет назад +3

    Sorry for being rude but please learn matrix multiplication. You could've simply done something like this:
    a = [4, 7, 10];
    b = [12, 16, 18, 20, 54];
    % Take transpose of 'a' and matrix multiply by 'b'
    c = a' * b;
    % Result will be
    disp(c);

    • @snugglemath
      @snugglemath  8 лет назад +12

      +Tushar Srivastava Sure, the benefits of meshgrid aren't as obvious looking at multiplication. It's much more valuable when you're doing something like exponents.
      a = [4, 7, 10];
      b = [12, 16, 18, 20, 54];
      [newA, newB] = meshgrid(a,b)
      c = newA .^ newB

    • @MThapa-ul4ln
      @MThapa-ul4ln 8 лет назад +14

      +Tushar Srivastava Sorry for being rude but you should listen to what she is trying to explain here ! She just tore the meshgrid apart , laid x and y grids next to each other and explained them piece by piece. I stumbled into this video after trying to understand what meshgrid really does. Spend almost 1/2 hour on mathworks.com, tried different things on command window to understand the purpose of meshgrid. BTW anyone taking matlab knows that you can't multiply 1X3 and 1X5 matrix.did specify elementwise multiplication

    • @xXsakkelaoXx
      @xXsakkelaoXx 7 лет назад +1

      +Tushar Srivastava
      We want the componentwise multiplication, your method gives only one solution.

  • @nikilragav
    @nikilragav 6 лет назад

    You could do buystuff_transpose * priceofstuff ...

  • @Atozanycome111
    @Atozanycome111 7 лет назад +1

    4 times 16 is a number ending in 4....ummm 68? LMAO hahaha :D

  • @fotinique
    @fotinique 7 лет назад

    MY TEACHERS SUCK.