3.4. CompositionΒΆ
Just as with mathematical functions, C++ functions can be composed, meaning that you use one expression as part of another. For example, you can use any expression as an argument to a function:
double x = cos (angle + pi / 2);
This statement takes the value of pi, divides it by two and adds the
result to the value of angle. The sum is then passed as an argument to
the cos function.
You can also take the result of one function and pass it as an argument to another:
This program finds the log base e of 10 and raises e to that power. The result of this computation is assigned to x.
double x = log6 (12);-
log6is not a built in cmath function, but you could write an implementation for it if you wanted! double val = abs (tan (1.57));-
This correctly uses cmath functions!
double num = exp (cosine (0.86667));-
cosineis not a built in cmath function, butcosis! double y = exp (cos (1.047)) + exp (tan (2.094))-
This would be correct if it ended in a semi-colon.
Q-2: Which of these statements has proper syntax?
y = cos(330);-
You must always convert to radians before using sinusoidal functions.
y = cos(330 * 2 * pi / 360);-
coswill return the x-component. y = sin(330);-
You must always convert to radians before using sinusoidal functions.
y = sin(330 * 2 * pi / 360);-
sinreturns the y-component,cosreturns the x-component. y = tan(330 * 2 * pi / 360);-
tanis not the proper function to use here.
Q-3: Which of these statements returns the y-component of the unit vector at 330 degrees?