No video

Loops and Execution Control

  Рет қаралды 208,822

MATLAB Programming for Numerical Computation

MATLAB Programming for Numerical Computation

Күн бұрын

Пікірлер: 44
@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 5 жыл бұрын
Dear Sir, U saved me. I was looking for Matlab lecture. and I got this.
@alickcampbell8915
@alickcampbell8915 3 жыл бұрын
%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
@mahmudanoor801
@mahmudanoor801 5 жыл бұрын
Your lecture is so clear, simple and easy to understand. Thank you.
@kishanadepu
@kishanadepu 2 жыл бұрын
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 Жыл бұрын
All lectures are very precise and smoothly delivered. You are a good teacher.
@sapankushwaha4069
@sapankushwaha4069 5 жыл бұрын
Sir matlab kase matlab kase koi Etna achha explain kar Sakta hai very nice sirji☺️☺️
@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?
@shortTripsnLaughs51213
@shortTripsnLaughs51213 3 жыл бұрын
Thank u so much sir for providing me such a valuable things
@mymoneymyinvestments
@mymoneymyinvestments 5 жыл бұрын
so goooood lecture
@hodmechanical129
@hodmechanical129 4 жыл бұрын
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
@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.
@s.m.talhawadood5852
@s.m.talhawadood5852 4 жыл бұрын
this end function in fibo(end) is not running , any suggestion?
@abdulhameedafridi9524
@abdulhameedafridi9524 6 жыл бұрын
Great explanation..Thank you
@yourevolution7850
@yourevolution7850 Жыл бұрын
Where is the example of factorial?
@uditsaxena3844
@uditsaxena3844 4 жыл бұрын
thanks sir but u didnt define fiobnacci end during while loop
@amansrivastava7592
@amansrivastava7592 7 жыл бұрын
Keep it up ... Sir
@pointpleasant73
@pointpleasant73 5 жыл бұрын
Thanks Prof...
@VINAYKUMAR-mx9fj
@VINAYKUMAR-mx9fj Жыл бұрын
great sir you have no match
@mymoneymyinvestments
@mymoneymyinvestments 5 жыл бұрын
great lecture
@rameshpandey2176
@rameshpandey2176 6 жыл бұрын
provide module no on title so it will be easy to follow
@mymoneymyinvestments
@mymoneymyinvestments 5 жыл бұрын
how did you learn like this???
@pranjaltiwari7502
@pranjaltiwari7502 5 жыл бұрын
He is a fucking IIT Madras Professor. lol
@abhinandangupta2483
@abhinandangupta2483 4 жыл бұрын
% Fibonacchi series using While loop fibo= [1,1]; i=3; while fibo(end)
@sreejithk.p6434
@sreejithk.p6434 4 жыл бұрын
Thank u sir
@jatinsharma1915
@jatinsharma1915 7 жыл бұрын
fibo=[1,1]; while fibo(end)
@907425019
@907425019 5 жыл бұрын
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
@dhanasrisrinivas2557
@dhanasrisrinivas2557 6 жыл бұрын
Sir can You tell me the symbol which is in first line plzzzzz
@mathematicstuitionwithdrak4313
@mathematicstuitionwithdrak4313 3 жыл бұрын
%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.
@mallikarjunaprasad1
@mallikarjunaprasad1 7 жыл бұрын
very nice
@mymoneymyinvestments
@mymoneymyinvestments 5 жыл бұрын
I also want control on Matlab like this..
@vrashikeshpatil9315
@vrashikeshpatil9315 4 жыл бұрын
respect for you sirrr
@rupombhattacherjee7093
@rupombhattacherjee7093 5 жыл бұрын
fibo=[1, 1]; n=2; while fibo(n)
@mathiolia5877
@mathiolia5877 2 жыл бұрын
check once
@omkarshinde2798
@omkarshinde2798 6 жыл бұрын
i am 53K th viewer
@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
@iftheshufits5
@iftheshufits5 3 жыл бұрын
also its ut-1/2gt^2 not y0t
@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
Рет қаралды 237 М.
Tutorial: Using Arrays
21:03
MATLAB Programming for Numerical Computation
Рет қаралды 176 М.
Violet Beauregarde Doll🫐
00:58
PIRANKA
Рет қаралды 25 МЛН
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН
Happy birthday to you by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 12 МЛН
Learn JavaScript WHILE LOOPS in 8 minutes! 🔁
8:12
Bro Code
Рет қаралды 25 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 298 М.
Plotting and Output
26:39
MATLAB Programming for Numerical Computation
Рет қаралды 139 М.
MATLAB for Engineers - Conditional Statements if, else, and elseif
12:52
Spartan Professor
Рет қаралды 76 М.
Array Operations in MATLAB
24:21
MATLAB Programming for Numerical Computation
Рет қаралды 375 М.
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 398 М.
Fastest Way to Learn ANY Programming Language: 80-20 rule
8:24
Sahil & Sarra
Рет қаралды 830 М.
Timeline: How the Titanic submersible went missing
7:14
ABC News
Рет қаралды 368 М.
Violet Beauregarde Doll🫐
00:58
PIRANKA
Рет қаралды 25 МЛН