You are given a 2-D array of size NxN. Your task is to find:
-
The mean along axis
-
The var along axis
-
The std along axis
The first line contains the space separated values of N and M . The next N lines contains M space separated integers.
First, print the mean. Second, print the var. Third, print the std.
Sample Input 2 2 1 2 3 4
Sample Output [ 1.5 3.5] [ 1. 1.] 1.11803398875