Loops and Execution Control

  Рет қаралды 212,327

MATLAB Programming for Numerical Computation

MATLAB Programming for Numerical Computation

Күн бұрын

Пікірлер: 45
@2TheAbbeyClinic
@2TheAbbeyClinic 6 жыл бұрын
What a great teacher, so patient and clear. Very gifted. Thanks. Graduated from Cornell in science and never had a better professor. Thank you.
@mymoneymyinvestments
@mymoneymyinvestments 6 жыл бұрын
Dear Sir, U saved me. I was looking for Matlab lecture. and I got this.
@kishanadepu
@kishanadepu 3 жыл бұрын
Excellent matlab teaching, I am student of MTech, In my class I could n't follow the way he is teaching. yours very easy to understand. thanks for nice lectures
@shifagoyal8221
@shifagoyal8221 2 жыл бұрын
All lectures are very precise and smoothly delivered. You are a good teacher.
@mahmudanoor801
@mahmudanoor801 5 жыл бұрын
Your lecture is so clear, simple and easy to understand. Thank you.
@alickcampbell8915
@alickcampbell8915 4 жыл бұрын
%Fibonacci using while loop until less than 200 fibo= [1,1]; i = 2; while fibo(i) + fibo(i-1)
@vivekjk6729
@vivekjk6729 Жыл бұрын
this seems so much better than the one in the video thanks
@sapankushwaha4069
@sapankushwaha4069 6 жыл бұрын
Sir matlab kase matlab kase koi Etna achha explain kar Sakta hai very nice sirji☺️☺️
@shortTripsnLaughs51213
@shortTripsnLaughs51213 3 жыл бұрын
Thank u so much sir for providing me such a valuable things
@sagar11222
@sagar11222 4 жыл бұрын
what is the value of end at 6:53 .should we not initialize its value? Does this while loop start calculating from big to small Fibonacci values?
@hodmechanical129
@hodmechanical129 5 жыл бұрын
Great I wish to meet you and clarify some doubts
@videohub9521
@videohub9521 4 жыл бұрын
Even we in IIT Bombay refer to his lectures as a start because usually in class there's a constraint of time
@ashwinmathur6285
@ashwinmathur6285 5 жыл бұрын
it's so impressive sir
@mymoneymyinvestments
@mymoneymyinvestments 6 жыл бұрын
so goooood lecture
@abdulhameedafridi9524
@abdulhameedafridi9524 6 жыл бұрын
Great explanation..Thank you
@mrigankchhabra3844
@mrigankchhabra3844 Жыл бұрын
Hi there, I hope this message finds you well. I have a query that in your explanation of fibonacci series using while loop. You have created fibo(end)
@yourevolution7850
@yourevolution7850 Жыл бұрын
As he said in fibo(end) end is a command which extracts the last element of array.
@kaun_talha15
@kaun_talha15 4 жыл бұрын
this end function in fibo(end) is not running , any suggestion?
@uditsaxena3844
@uditsaxena3844 5 жыл бұрын
thanks sir but u didnt define fiobnacci end during while loop
@yourevolution7850
@yourevolution7850 Жыл бұрын
Where is the example of factorial?
@GopikaN-r7z
@GopikaN-r7z 4 ай бұрын
Is v0 = 20 randomly taken?
@rameshpandey2176
@rameshpandey2176 7 жыл бұрын
provide module no on title so it will be easy to follow
@mymoneymyinvestments
@mymoneymyinvestments 6 жыл бұрын
how did you learn like this???
@pranjaltiwari7502
@pranjaltiwari7502 5 жыл бұрын
He is a fucking IIT Madras Professor. lol
@mymoneymyinvestments
@mymoneymyinvestments 6 жыл бұрын
great lecture
@amansrivastava7592
@amansrivastava7592 7 жыл бұрын
Keep it up ... Sir
@VINAYKUMAR-mx9fj
@VINAYKUMAR-mx9fj Жыл бұрын
great sir you have no match
@pointpleasant73
@pointpleasant73 6 жыл бұрын
Thanks Prof...
@dhanasrisrinivas2557
@dhanasrisrinivas2557 6 жыл бұрын
Sir can You tell me the symbol which is in first line plzzzzz
@mymoneymyinvestments
@mymoneymyinvestments 6 жыл бұрын
I also want control on Matlab like this..
@jatinsharma1915
@jatinsharma1915 7 жыл бұрын
fibo=[1,1]; while fibo(end)
@907425019
@907425019 6 жыл бұрын
Hello bro. If you wanna earn part-time, for simple Matlab probs plz revert me back. And be quick bro. Thanks
@mayankupadhyay6058
@mayankupadhyay6058 4 жыл бұрын
@@907425019 yes say I want
@sreejithk.p6434
@sreejithk.p6434 4 жыл бұрын
Thank u sir
@mallikarjunaprasad1
@mallikarjunaprasad1 8 жыл бұрын
very nice
@mathematicstuitionwithdrak4313
@mathematicstuitionwithdrak4313 4 жыл бұрын
%Display location of the ball hit vertically at every 0.1 s v0=20; g=9.8; y=0; t=0; while(y>=0) t=t+0.1; y=v0*t-g*t^2/2; %Ball is going vertically upward upto y>=0 display(['At t= ',num2str(t), ',location= ',num2str(y)]); end plot(t,y) xlabel('t (second)');ylabel('y (metre)') Result is being shown in Display But in plot I am unable to see the trajectory of (y). please help.
@abhinandangupta2483
@abhinandangupta2483 4 жыл бұрын
% Fibonacchi series using While loop fibo= [1,1]; i=3; while fibo(end)
@vrashikeshpatil9315
@vrashikeshpatil9315 5 жыл бұрын
respect for you sirrr
@soumyajitbose4544
@soumyajitbose4544 5 жыл бұрын
%% Ball vertical location in array form u = 20; g = 9.8; t = 0; y0 = 0; y = [0]; while (y(end)>0) t = t + 0.1; ynew = y0*t - 0.5*g*t^2; y = [y,ynew]; end #Results are not showing, please point out the error
@rushikeshreddy8044
@rushikeshreddy8044 3 жыл бұрын
First condition itself is not met You defined y = [0] Try giving condition as y >= 0
@Honeyyboooo
@Honeyyboooo 3 жыл бұрын
also its ut-1/2gt^2 not y0t
@omkarshinde2798
@omkarshinde2798 6 жыл бұрын
i am 53K th viewer
@rupombhattacherjee7093
@rupombhattacherjee7093 5 жыл бұрын
fibo=[1, 1]; n=2; while fibo(n)
@mathiolia5877
@mathiolia5877 3 жыл бұрын
check once
@mayankupadhyay6058
@mayankupadhyay6058 4 жыл бұрын
How smoothly he is running out of facts...By the way what happened when we displayed before......?????? Are sir just come out of sarkari ravaiyya ..Sorry to say if harsh
MATLAB Files -- Scripts and Functions
23:35
MATLAB Programming for Numerical Computation
Рет қаралды 241 М.
Tutorial: Using Arrays
21:03
MATLAB Programming for Numerical Computation
Рет қаралды 180 М.
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
MATLAB for Engineers - Conditional Statements if, else, and elseif
12:52
Spartan Professor
Рет қаралды 81 М.
#17 While Loop in Java
12:28
Telusko
Рет қаралды 169 М.
Nested loops in Python are easy ➿
5:35
Bro Code
Рет қаралды 363 М.
While Loops in Python | Python for Beginners
5:40
Alex The Analyst
Рет қаралды 75 М.
Array Operations in MATLAB
24:21
MATLAB Programming for Numerical Computation
Рет қаралды 384 М.
I am not sorry for switching to C
11:34
Sheafification of G
Рет қаралды 181 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 459 М.
Plotting and Output
26:39
MATLAB Programming for Numerical Computation
Рет қаралды 141 М.
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.