The geometric mean g of n numbers xi is defined as the nth root of the product of xi:
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:35.1
All Answers
total answers (1)
>> x1 = 1.15; >> x2 = 1.5; >> x3 = 1.3; >> gmean = nthroot(x1*x2*x3, 3) gmean = 1.31
need an explanation for this answer? contact us directly to get an explanation for this answer