subject

Write a function in matlab called stats that accepts an nxn matrix. this function should compute the following for each column and return 5 row vectors - mat_mean, mat_median, mat_min, mat_max and mat_std_dev which contain the mean, the median, the minimum, the maximum and the standard deviation values for each column in the nxn matrix.

for example:

test result
a = [1 1 1; 3 4 5; 8 10 12];
[mean_a median_a min_a max_a std_dev_a] = stats(a);
disp(mean_a)
disp(median_a)
disp(min_a)
disp(max_a)
disp(std_dev_a)

4 5 6
3 4 5
1 1 1
8 10 12
3.6056 4.5826 5.5678

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 15:30
Why would a programmer use the logical operator and in an if statement? a: when an action is to be taken that requires both conditions to be falseb: when an action is to be taken that requires both conditions to be truec: when an action is to be taken that requires the first condition to be falsed: when an action is to be taken that requires the second condition to be truei took the test and the answer is b.
Answers: 3
question
Computers and Technology, 22.06.2019 19:30
Avariable definition defines the name of a variable that will be used in a program, as well as
Answers: 3
question
Computers and Technology, 22.06.2019 23:30
For her science class, elaine is creating a presentation on weather in the united states. she wants to make the presentation beautiful and interesting by drawing simple cloud or wave shapes. which is the best way for elaine to draw these shapes?
Answers: 1
question
Computers and Technology, 23.06.2019 03:00
State 7 common key's for every keyboard
Answers: 1
You know the right answer?
Write a function in matlab called stats that accepts an nxn matrix. this function should compute the...
Questions
Questions on the website: 13722363