Using Meshgrid in Matlab

Поділитися
Вставка
  • Опубліковано 4 лис 2024

КОМЕНТАРІ • 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

  • @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!!

  • @MrAbIRaZ
    @MrAbIRaZ 7 років тому +7

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

  • @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

  • @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.

  • @adelsalam9735
    @adelsalam9735 Рік тому

    thank you so much for coming back.

  • @tobechukwublessed4274
    @tobechukwublessed4274 10 місяців тому

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

  • @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!

  • @isurumahakumara
    @isurumahakumara 4 роки тому +1

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

  • @laural614
    @laural614 2 роки тому

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

  • @quocvytruong6462
    @quocvytruong6462 5 років тому +3

    your sweet tutorial make my day XD ! thanks a lots

  • @maramam5024
    @maramam5024 3 роки тому

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

  • @zhin13
    @zhin13 8 років тому +3

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

  • @kunalchatterjee5310
    @kunalchatterjee5310 5 років тому +1

    Thank you for the explanation! The sweetest explanation :D

  • @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.

  • @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

  • @anheruan
    @anheruan 5 років тому

    So simple example and very useful ¡ Thank you ¡

  • @lrellisderth118
    @lrellisderth118 6 років тому

    Awesome tutorial!

  • @philipvankampen
    @philipvankampen 9 років тому

    thank you!!!! Great explaination of meshgrid

  • @haveanicetime
    @haveanicetime 6 років тому +1

    Vielen Dank!

  • @maxtop34
    @maxtop34 5 років тому

    thank you so much madame !

  • @sayanjitb
    @sayanjitb 4 роки тому

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

  • @mariorosa6540
    @mariorosa6540 6 років тому

    You the best!

  • @kroomsami1182
    @kroomsami1182 9 років тому

    thank you , it is 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 8 років тому +1

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

  • @bunyaminkasikci5211
    @bunyaminkasikci5211 8 років тому

    that was helpful! :)

  • @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.