Wednesday, December 4, 2013
Tuesday, December 3, 2013
Saturday, November 23, 2013
Thursday, November 21, 2013
Tuesday, November 19, 2013
Fourier Transform in Matlab Video + Code
I am unable to upload videos on youtube.com due to restriction in my Country. You can download the videos and watch them and if videos are good enough you can upload them on youtube for others.
Finding the Fourier Series using Matlab + Code
I m unable to upload videos on youtube.com due to restriction in my Country. You can download the videos and watch them and if videos are good enough you can upload them on youtube for others.
My transform Calculator in Matlab + CODE
- I coded this little program in Matlab .
- It calculate the Fourier Series + it's graph.
- It compute Discrete time Fourier Transform.
- It solve differential equations with graph .
- It explain about Fourier Transform and it's Magnitude+Angle plot
Put these files in bin folder and then execute the integration.m file
Download files
Tuesday, November 12, 2013
Sunday, November 10, 2013
Friday, October 18, 2013
Curve Length Modeling in MATLAB
We know the formula to find the length of curve using tools of integration. Now lets do it in MATLAB.
Method:
Put curvelen.m file in bin folder and then follow the syntax
Click on images to see clearly
Download .m File
http://www.mediafire.com/?q1a8n99f3mh28pr
Method:
Put curvelen.m file in bin folder and then follow the syntax
Click on images to see clearly
Download .m File
http://www.mediafire.com/?q1a8n99f3mh28pr
Wednesday, October 2, 2013
Energy And Power Signals Solved Examples :: Signal and Systems
When i was encountered by this concept , it took a lot of time to understand. I was unable to find any examples to dig the concept further. So i am uploading few solved example.
Download PDF:
http://www.mediafire.com/?21tur0i3aaiihqe
Download PDF:
http://www.mediafire.com/?21tur0i3aaiihqe
Friday, September 27, 2013
Unit Conversion using Algebraic Techniques
Unit conversion is one of those concepts of my Educational life which consumed huge amount of brain energy and time. But i was successful in finding the solution which is working most of the time for me. Its lengthy but accurate and error free.
First of all you have to memorize all some basic units like
1m=3.2ft=39.2inch or
1kg=2.2lbs
.
.
.
.
then just by simple substitution and simplification we can get to the answer.
I have checked all the answers form www.wolframalpha.com/ they are correct but i am fishy about the iii) example. There is some mistake in it but the method is same.
Download in PDF:
http://www.mediafire.com/download/yhsrba2kgek5e2r/Unit_Conversions.pdf
First of all you have to memorize all some basic units like
1m=3.2ft=39.2inch or
1kg=2.2lbs
.
.
.
.
then just by simple substitution and simplification we can get to the answer.
I have checked all the answers form www.wolframalpha.com/ they are correct but i am fishy about the iii) example. There is some mistake in it but the method is same.
Download in PDF:
http://www.mediafire.com/download/yhsrba2kgek5e2r/Unit_Conversions.pdf
Thursday, September 26, 2013
Differential Equation Notes
Differential Equations notes include
1) Separable Differential Equations
2) Non-separable Differential Equations
3) Exact Differential Equations
4) Bernoulli Differential Equations
5) Higher Order non homogeneous Diff. Equations
6) Higher order Homogeneous Diff. Equations
7) Cauchy-Euler Differential Equations
Download LINK:
http://www.mediafire.com/download/defhx8ai0eghomr/Differential_Equation_Notes.pdf
Unit step and Ramp Function in MATLAB
Ramp function :
Code:
function ramp(L)
n=-L:L;
x=zeros(1,length(n));
for i=1:L
x(L+1+i)=i;
end
stem(n,x)
grid on
Unit step function :
Code:
function ustep(L)
n=-L:L;
x=zeros(1,length(n));
for i=1:L
x(L+i)=1;
end
stem(n,x)
Code:
function ramp(L)
n=-L:L;
x=zeros(1,length(n));
for i=1:L
x(L+1+i)=i;
end
stem(n,x)
grid on
Unit step function :
Code:
function ustep(L)
n=-L:L;
x=zeros(1,length(n));
for i=1:L
x(L+i)=1;
end
stem(n,x)
Routh–Hurwitz stability criterion in MATLAB
Copy the rhc.m file to C:\Program Files\MATLAB\R2012a\bin\
and then follow the instruction in the image below:
Download Link:
http://www.mediafire.com/?0i9cl6ba956abb1
Tabular Method for Product and Quotient Rule:: A faster approach
We basically have 4 types of function
but when they get multiplied with each other , doing derivation and integration become complex and time consuming. This is the fastest method i have ever seen to get first and 2nd derivative of a function.
Just take derivative of both function and cross-multiply, put '+' between cross-multiplied terms and then simplify.
Product Rule and 2nd Derivative by Tabular Method :
Example
- Algebraic
- Trigonometric
- Exponential
- Logarithmic
but when they get multiplied with each other , doing derivation and integration become complex and time consuming. This is the fastest method i have ever seen to get first and 2nd derivative of a function.
Just take derivative of both function and cross-multiply, put '+' between cross-multiplied terms and then simplify.
Product Rule and 2nd Derivative by Tabular Method :
Example
Monday, September 23, 2013
Friday, September 20, 2013
Transmission Lines Sag Modeling in MatLab + CODE
Program will calculate the Sag and Vertical Sag of a transmission line with given parameters. Program is intelligent enough to recognize the missing values and find them automatically till sag and V.Sag is calculated.
Wednesday, September 11, 2013
Numerical Methods Notes
Numerical Methods Notes:
Caution:
There might be some errors or mistakes, so be careful
Download Link:
http://www.mediafire.com/download/5p6tyka79svh9q6/Numerical_Methods_Concept_Solutions.pdf
Tuesday, September 10, 2013
Solution Manual :: Advance Engineering Mathematics by Erwin Kreysizg 9th Edition
- Chapter # 11:: Fourier Analysis
- Chapter #13:: Complex analysis
Caution: Solutions are for practice. Don't use it for illegal purposes.
Download Link:
http://www.mediafire.com/download/iei1s18dabu6q8q/Fourier%2C_Laplace_and_complex_variables_practice_Problems.pdf
Thursday, September 5, 2013
Circuit Analysis( Thevenin, Norton & Superposition Theorem) Solved Practice Problems
Solved Practice Problems
Download in PDF:
http://www.mediafire.com/?pc84jw64bctk1mc
- Thevenin Theorem
- Norton Theorem
- Superposition Theorem
Download in PDF:
http://www.mediafire.com/?pc84jw64bctk1mc
Saturday, August 31, 2013
Subscribe to:
Posts (Atom)