| Contents | Index |
c = median(a)
c = median(a,dim)
c = median(a) computes the median value of the fixed-point array a along its first nonsingleton dimension.
c = median(a,dim) computes the median value of the fixed-point array a along dimension dim. dim must be a positive, real-valued integer with a power-of-two slope and a bias of 0.
The input to the median function must be a real-valued fixed-point array.
The fixed-point output array c has the same numerictype properties as the fixed-point input array a and has no local fimath.
When a is an empty fixed-point array (value = []), the value of the output array is zero.
Compute the median value along the first dimension of a fixed-point array.
x = fi([0 1 2; 3 4 5; 7 2 2; 6 4 9], 1, 32) % x is a signed FI object with a 32-bit word length % and a best-precision fraction length of 27 bits mx1 = median(x,1)
Compute the median value along the second dimension (columns) of a fixed-point array.
x = fi([0 1 2; 3 4 5; 7 2 2; 6 4 9], 1, 32) % x is a signed FI object with a 32-bit word length % and a best-precision fraction length of 27 bits mx2 = median(x, 2)

Learn how to apply early verification to your development process through these technical resources.
How much time do you spend on testing to ensure implementation meets system-level requirements?
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |