answersLogoWhite

0


Best Answer

You can, instead, find the log of the ratio.

Thus: log(A) - log(B) = log(A/B)

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you determine the value of logarithmic decrement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why are increment and decrement used in c?

To increment or decrement a value


What is logarithmic decrement?

A measure of the mechanical damping. The logarithmic decrement is measured dynamically using a torsion pendulum, vibrating reed, or some other free vibration instrument, and is calculated from the natural logarithm of the ratio of the amplitudes of any two oscillations. Its formulation is: whereAi = amplitude of the ith oscillationA(i+n) = amplitude of the oscillation n vibrations after the ith oscillation.


What is the difference between predecrement and postdecrement operator in c?

The order of the operations: --p means: decrement the variable, then fetch the new value p-- means: fetch the old value, then decrement the variable


What is the difference between incrementation and decramentation?

An increment is an increase in value, while a decrement is a decrease in value.


Which network device decrement ttl value?

I believe the router.


What is antilogarithm?

The Logarithm of a number is the converse of its logarithmic value..


For loop in c language?

for(assigning initial value;condition;increment/decrement) { statement; }


What type of loop can either increment or decrement the loop control variables value?

Counting Loop


How do you find the horizontal asymptote of a logarithmic function where x equals 7.5 and y equals 50?

One point on a logarithmic graph is not sufficient to determine its parameters. It is, therefore, impossible to answer the question.


Is it possible to have a dB value less than 0dB?

Yes, it is possible to have a dB value less than 0dB. It simply means that the measured value is lower than the reference value. dB is a logarithmic unit used to express the ratio of two values.


What are the three laws of logarithmic?

There is no subject to this question: "logarithmic" is an adjective but there is no noun (or noun phrase) to go with it. The answer will depend on logarithmic what? Logarithmic distribution, logarithmic transformation or what?


Decrement operators programing in java?

The decrement operator is simply the double minus, attached to a variable:a--;or:--a;The two examples above are identical, and both are equivalent to:a -= 1;or:a = a - 1;However, if the decrement operator is used as part of more complicated expressions, in the --variable version, the decrement is done before anything else, while in the variable-- version, the decrement is done after anything else.