BrainMan
- 279
- 2
matineesuxxx said:I cannot see the attached image, however, if you mean something like this: [itex]\exp (x)[/itex] that is just the exponential function, so [itex]\exp(x) = e^x[/itex]
It's just a more convenient way of representing the function when its arguments start to get complicated
Here is a better pictureHallsofIvy said:The brackets are just that- a way of indicating a separate calculation, no different from parentheses.
double x = 3.2;
double y = Math.exp(x); // refers to the e^x math function
double x =3.2;
double y = 4.3;
double z = Math.pow(x,y); // for x^y math function
AlephZero said:##I = C_1 + C_2 G - C_3(e^{\frac {V} {C_4T_{cc}}} - 1) - C_5(e^{\frac {V} {C_6T_{cc}}} - 1) - \frac {V} {C_7T_{cc}}##
BrainMan said:Where are you getting the e? Is that euler's number?