FOR loops in MATLAB: Nested FOR loops
HTML-код
- Опубликовано: 11 ноя 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.
Thank you, sir. This makes much more sense the way you've explained it!!
i was struggling to write one function on matix for an hour but your explaination made my day.. thanks a lot!!
Thanks to this I was able to try out some refresher, I got the program solved before him posting the solution. Thanks!
I didn't know Bird Person taught MATLAB tutorials
Me too
LMAOOOO
Very well presented! I wish it were explained this clearly when I was learning it!
Very comprehensive and helpful, sir. Thank You.
your tutorial videos are really helpful and precise,keep up the good work!!
I am an absolute beginner in programming and I find this video very useful! Thank you very much!
Thank you and +10pts for sounding like an older Sheldon from Big Bang Theory
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!
Just curious how to use MATLAB to find the values of a symbol?
Giving a+c=30 and 2
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
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?
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?
Great video!
what is the difference between using MOD and REM commands?
Hi Sir, can you create Matlab program for 2 input and 2 output using if else statement? Thank you very much
Shouldn't num_rows=size(A,2)?? Because the output of the function gives you the number of rows.
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 .
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
How can a user enter an array of his own choice??What is the command for that? please answer
supercool,you are my hero...btw is it macbook or mac book pro..???
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
Gr8! Was very helpful!
hello sir, can you help me to complete my thesis?
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...
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
what does mod do??
MOD function is almost like rem Function which also calculates remainder I guess.
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.
thank you so much
wonderful , great job :-)
Thank you!
Thanks
nice!
Thank you for not having an accent
cool !
neat
good job but speaking slower would make it easier to follow
Molto interessante, suggerisco anche il corso grautito di "Corsi Consulenze NPR", ruclips.net/video/nc1zk0DAJn0/видео.html
Zara slow bol re baba
cacca cacca cacca
u r too fast, doesnt freaking help
Quick and clear. Good one!