Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

this is the code to find arithmetic mean and geometric mean in matlab code x=[1,2,3;4,5,6;8,7,9]; y=sort(x(:)); z=numel(y); a=sum(y)/numel(y) b=(prod(y))^(1/numel(y)) the arithmetic mean is 5, the

this is the code to find arithmetic mean and geometric mean in matlab code

x=[1,2,3;4,5,6;8,7,9]; y=sort(x(:)); z=numel(y); a=sum(y)/numel(y) b=(prod(y))^(1/numel(y))

the arithmetic mean is 5, the geometric mean is 4.1472 and the number of elements is 9.

i need to make a matlab code to find the variance without using the built in function.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Carlos Coronel, Steven Morris

14th Edition

978-0357673034

More Books

Students also viewed these Databases questions

Question

Explain the market segmentation.

Answered: 1 week ago

Question

Mention the bases on which consumer market can be segmented.

Answered: 1 week ago