Time Response analysis chapter is skip so please complete this chapter also after the completion of the Stability analysis chapter sir... because it's also important chapter for the gate exam point of view... Thanks sir for providing best learning platform to us...
Im a bit confused with your characteristics equation. Shouldn't it have been "1 - K*G(s)H(s)" considering that tge feedback is subtracting H(s)? On that note, what happens when K is considered negative?
// please sir explain this program // #include using namespace std; int add(int a, int b) { return a+b; } int sub(int a, int b) { return a-b; } int operation (int a,int b,int(*fun)(int x,int y)) { int g; g=(*fun)(a,b); return g; } int main() { int m,n; m=operation (10,5,add); cout
My day gets better every time a control system lecture is posted!
Xd
sounds like a very sad life
Love from Bangladesh. You made my BUET life easier. Hats of you!!!!
Time Response analysis chapter is skip so please complete this chapter also after the completion of the Stability analysis chapter sir... because it's also important chapter for the gate exam point of view...
Thanks sir for providing best learning platform to us...
Excellent sir. Your videos really helped me in my finals
Nice lecture sir..... awesome teaching
It was very Clear And Useful for all , and mostly those who doing self study . I have a doubt. When will u complete whole syllabus ?
please complete Aptitude for GATE that you already have started in the past 🙏🏼 🙄.
Upload remaining lecture of COA.
Sir, you make control systems easy😁, thank you so much.
i m waiting everyday now for next lecture...^_^
Вы очень хорошо объясняете! Спасибо огромное!
Very educative lecture❤
K, this was a great video!
thankyou Sir🙏❤
Thank you sir...❤
Sir please solve and upload model paper problems
happy teachers day
Im a bit confused with your characteristics equation. Shouldn't it have been "1 - K*G(s)H(s)" considering that tge feedback is subtracting H(s)? On that note, what happens when K is considered negative?
what happens to the system when K = 1.55 and when K= 2 ?
Tuh star hai
// please sir explain this program
//
#include
using namespace std;
int add(int a, int b)
{
return a+b;
}
int sub(int a, int b)
{
return a-b;
}
int operation (int a,int b,int(*fun)(int x,int y))
{
int g;
g=(*fun)(a,b);
return g;
}
int main()
{
int m,n;
m=operation (10,5,add);
cout
Let me know what you think it does, and then I'll give my thoughts so that we can compare.