How do i plot a I-V graph given the following step size of V. the following equation:
%Given: Rs=0.5; V=0:1.5:35;
I=exp(V+RsI)+(V+RsI);
How do i plot a I-V graph given the following step size of V. the following equation:
%Given: Rs=0.5; V=0:1.5:35;
I=exp(V+RsI)+(V+RsI);
If you just need the graph, you don't need to solve the equation, you can use ezplot
to plot implicit equations.
If you need to solve it specifically over that range you can use fzero
inside a for loop, BUT, I think you don't have your equation right, because it doesn't seem to be defined over that range