mirror of
https://github.com/nushell/nushell.git
synced 2024-12-27 01:19:25 +01:00
20 lines
230 B
Markdown
20 lines
230 B
Markdown
|
---
|
||
|
title: math median
|
||
|
layout: command
|
||
|
version: 0.59.0
|
||
|
---
|
||
|
|
||
|
Gets the median of a list of numbers
|
||
|
|
||
|
## Signature
|
||
|
|
||
|
```> math median ```
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
Get the median of a list of numbers
|
||
|
```shell
|
||
|
> [3 8 9 12 12 15] | math median
|
||
|
```
|
||
|
|