log_inv
Computes the inverse logarithm
Interface
#include <codecogs/maths/combinatorics/arithmetic/log_inv.h>
using namespace Maths::Combinatorics::Arithmetic;
Overview
Function to compute the inverse logarithm, by feeding it with the base and the result.
Example 1
Computing
(1)
printf("Inverse logarithm of base 10 resulting 2: %d ",log_inv(10,2));Output:
Inverse logarithm of base 10 resulting 2: 100It will return -1 for incorrect base input ( good input goes from +1* to +infinite).
* - +1 means the first number right after 1 (ie. 1,0001).
Parameters
base
Any value above 1
result
Any value (even negative)
Returns
The value to apply the logarithm operator ( log x )
DECLARATION
log_inv
This class contains functions that aren't avaible in System.Math class.
Author
Johny Void
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.