FOR loops in MATLAB: Nested FOR loops

Поділитися
Вставка
  • Опубліковано 5 жов 2024
  • This screencasts gives an example of a nested FOR loop in a MATLAB program and how to create it based on a written algorithm. Also introduces the SIZE and MOD commands as a side trip.

КОМЕНТАРІ • 51

  • @rockyroad179
    @rockyroad179 3 роки тому +2

    Thank you, sir. This makes much more sense the way you've explained it!!

  • @jerrodnewton722
    @jerrodnewton722 5 років тому +27

    I didn't know Bird Person taught MATLAB tutorials

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

    i was struggling to write one function on matix for an hour but your explaination made my day.. thanks a lot!!

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

    Thanks to this I was able to try out some refresher, I got the program solved before him posting the solution. Thanks!

  • @romisana
    @romisana 12 років тому +1

    Very well presented! I wish it were explained this clearly when I was learning it!

  • @insajderpapaj4650
    @insajderpapaj4650 11 років тому

    I am an absolute beginner in programming and I find this video very useful! Thank you very much!

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

    Very comprehensive and helpful, sir. Thank You.

  • @kush.5904
    @kush.5904 8 років тому +1

    your tutorial videos are really helpful and precise,keep up the good work!!

  • @AlexanderMaltagliati
    @AlexanderMaltagliati 9 років тому +2

    I found this very helpful, but I felt that there were a few commands that were used but not fully explained:
    "fprintf", "%0.0f", and ".
    "
    I do not know where these came from and what they do (aside from if they are used exactly the same as in this case).
    Thanks!

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

    Thank you and +10pts for sounding like an older Sheldon from Big Bang Theory

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

    Great video!

  • @StrangeParticl
    @StrangeParticl 10 років тому

    that was a great lesson from you and I admired you way of explaining the example, I am welling to have a chat with you about somthing that I need the help in it. Welling to have you answer soon
    Thank you in advance
    Z

  • @SohilShah_Melodyman
    @SohilShah_Melodyman 7 років тому

    Gr8! Was very helpful!

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

    MOD function is almost like rem Function which also calculates remainder I guess.

  • @MrAnzu22
    @MrAnzu22 12 років тому

    supercool,you are my hero...btw is it macbook or mac book pro..???

  • @6996skull
    @6996skull 9 років тому +2

    thank you so much

  • @Indian2020_Jai_Jai
    @Indian2020_Jai_Jai 12 років тому

    Sir, please tell me about loops that are used to take two inputs simultaneously and computing it: example-
    fori=1:5
    forj=1:5
    fprintf('
    take length 1:');
    fprintf('
    take length 2:')
    %other computations
    end
    end

  • @jenatawad8553
    @jenatawad8553 11 років тому

    wonderful , great job :-)

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

    Shouldn't num_rows=size(A,2)?? Because the output of the function gives you the number of rows.

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

    A=input('Enter an array:')
    num_rows=size(A,1);
    num_cols=size(A,2);
    for i=1:1:num_rows;
    for j=1:1:num_cols
    if mod (A(i,j),2)==0
    fprintf('The entry %0.0f is even, A(i,j)')
    else
    fprintf('The entry %0.0f is odd, A(i,j)')
    endif
    endfor
    endfor

  • @Keevon7
    @Keevon7 13 років тому

    Thank you!

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

    Thanks

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

    Just curious how to use MATLAB to find the values of a symbol?
    Giving a+c=30 and 2

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

    Hi Sir, can you create Matlab program for 2 input and 2 output using if else statement? Thank you very much

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

    Will a nested for loop like this work the same for a string array?
    I dont know the syntax for the counter for a string array to go through each column then row

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

    what is the difference between using MOD and REM commands?

  • @zachgreaves9749
    @zachgreaves9749 12 років тому

    say within a for loop defined as,
    i=1:100
    if .....
    elseif.....
    while.....
    If I have a condition in the while loop that terminates the current history it is on and goes to the next history within the for loop... How would I do that? Say the condition is met in i=1, I want to terminate that loop if the neutron is lost and start, i=2.
    Please help...

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

    Hello, i have wind speed data(per second) and i need a loop to calculate the average every 1 minute(60sec). 5.270.341rows 1column. Can you help me?

  • @fgularte
    @fgularte 13 років тому

    nice!

  • @zachariahprince08
    @zachariahprince08 12 років тому

    How can a user enter an array of his own choice??What is the command for that? please answer

  • @rizwanrifaqat1399
    @rizwanrifaqat1399 7 років тому

    is it possible to save the resulting variables during the loop operation. for example for a loop from 1:5, i want to save all the generated variables during the iteration cycle under a different name. can it be done?

  • @Irfankhan-kh5ou
    @Irfankhan-kh5ou 5 років тому

    hey @
    RobertTalbertPhD
    i have got some issue in the matlb code that i want to run , it is related to my masters degree research.
    i just have to write a program for orientation of a mirror and the value of it changes for different days of the year . if you would help me correct my program i will be much indebted .

  • @StealthShadowFox
    @StealthShadowFox 7 років тому

    Can you please show how to solve a matrix of a 5x3 and have it in increase in the order of small to large.
    Example [ 1 2 5
    15 18 23 ]
    Thank you.

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

    hello sir, can you help me to complete my thesis?

  • @getnetgidelew1532
    @getnetgidelew1532 11 років тому

    cool !

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

    what does mod do??

  • @Mastela00
    @Mastela00 11 років тому

    neat

  • @112rapture
    @112rapture 8 років тому +38

    Thank you for not having an accent

  • @11792874
    @11792874 12 років тому

    good job but speaking slower would make it easier to follow

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

    Molto interessante, suggerisco anche il corso grautito di "Corsi Consulenze NPR", ua-cam.com/video/nc1zk0DAJn0/v-deo.html

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

    Zara slow bol re baba

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

    cacca cacca cacca

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

    u r too fast, doesnt freaking help

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

    Quick and clear. Good one!