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

10y 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?

Sure, after all it is a logarithmic scale.


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?


What are unary operators in javascript?

Binary operators are the common ones like +, -, /, *, <, >, !=, etc.. These you use with two objects, like : 1 + 2 Unary are the ones that does not need another object, like : ++, +, --, -, ! Like var a = 5; // Not this. this is a assignment a++; //Increment a in one ++a; //Increment a in one a--; // Decrement a in one --a; // Decrement a in one !a; // Logical opposite of a +a; // Positive value of a -a; // Negative value of a