skewError(A)

Returns the standard error of the skew of the entries in array A.

skewError(M)

Returns an array with the standard error of the skew of each column of matrix M.


Example


A=random(10, 1,20)

( 9 1 6 18 7 18 19 13 8 19 )

skewError(A)

0.687

M=randommatrix(10,4,1,20)

/  7  9  1  7 \

| 14 12  6  3 |

| 14  2 10 18 |

| 19 20 15 10 |

|  6  5 13  8 |

|  3  2 11 17 |

| 17  6 18 16 |

| 10  7  4 16 |

| 12  8 17 20 |

\ 19  9 17  4 /

skewError(M)

( 0.687 0.687 0.687 0.687 )