@apnvlogs7641

great teacher and great explanation

@mymoneymyinvestments

Dear Sir, U saved me. I was looking for Matlab lecture. and I got this.

@kishanadepu

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

All lectures are very precise and smoothly delivered. You are a good teacher.

@alickcampbell8915

%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

@sapankushwaha4069

Sir matlab kase matlab kase koi Etna achha explain kar Sakta hai very nice sirji☺️☺️

@mymoneymyinvestments

so goooood lecture

@hodmechanical129

Great I wish to meet you and clarify some doubts

@ashwinmathur6285

it's so impressive sir

@abdulhameedafridi9524

Great explanation..Thank you

@kaun_talha15

this end function in fibo(end) is not running , any suggestion?

@uditsaxena3844

thanks sir but u didnt define fiobnacci end during while loop

@GopikaN-r7z

Is v0 = 20 randomly taken?

@yourevolution7850

Where is the example of factorial?

@pointpleasant73

Thanks Prof...

@dhanasrisrinivas2557

Sir can You tell me the  symbol  which is in first line plzzzzz

@sreejithk.p6434

Thank u sir

@jatinsharma1915

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

@abhinandangupta2483

% 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