How to do this coding for this equation?
1 view (last 30 days)
Show older comments
Fairuz Ridwan
on 1 May 2016
Commented: Fairuz Ridwan
on 16 May 2016
i=25/50001*sin100t+2/100*cos100t+Ce^-2t,
t=0
0 Comments
Accepted Answer
Walter Roberson
on 1 May 2016
syms C t
eqn = i == 25/50001*sin(100*t)+2/100*cos(100*t)+C*exp(-2*t);
eqn0 = subs(eqn,t,0);
solve(eqn0, C)
7 Comments
Walter Roberson
on 16 May 2016
The above code is the solution for that.
Remember, i is the imaginary unit, http://www.mathworks.com/help/matlab/ref/i.html, the square root of negative 1. You have defined a value for the left side of the equation, sqrt(-1), and you have defined a t value, 0. Your equation comes evaluates down to sqrt(-1) = 1/50 + C . There is a single C that solves that equation, C = -1/50 + sqrt(-1) . That leads to a single point on the plot.
More Answers (1)
louis rassinfosse
on 1 May 2016
Edited: louis rassinfosse
on 1 May 2016
Try to use the symbolic toolbox;
syms t
I=.....
t=...
And you should get an answer
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!