Dear Sir, U saved me. I was looking for Matlab lecture. and I got this.
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
All lectures are very precise and smoothly delivered. You are a good teacher.
%Fibonacci using while loop until less than 200 fibo= [1,1]; i = 2; while fibo(i) + fibo(i-1) <200 fibo(i+1) = fibo(i) + fibo(i-1); i = i +1; end
Sir matlab kase matlab kase koi Etna achha explain kar Sakta hai very nice sirji☺️☺️
so goooood lecture
Great I wish to meet you and clarify some doubts
it's so impressive sir
Great explanation..Thank you
this end function in fibo(end) is not running , any suggestion?
thanks sir but u didnt define fiobnacci end during while loop
Is v0 = 20 randomly taken?
Where is the example of factorial?
Thanks Prof...
Sir can You tell me the symbol which is in first line plzzzzz
Thank u sir
very nice
fibo=[1,1]; while fibo(end)<200 fibo(end+1)=fibo(end-1)+ fibo(end); end disp(fibo(1:end-1)); Just made it little shorter, nothing new
% Fibonacchi series using While loop fibo= [1,1]; i=3; while fibo(end)<200 fibo(i) = fibo(i-1) + fibo(i-2); i = i+1; end fibo(end)=[]; disp(fibo); . . . I think I made it more Simple
@apnvlogs7641