get_distance_function_names¶
- get_distance_function_names() list[str] [source]¶
Get a list of distance function names in aeon.
- All distance function names have two associated functions:
name_distance name_pairwise_distance
- Elastic distances have two additional functions associated with them:
name_alignment_path name_cost_matrix
- Returns:
- List[str]
List of distance function names in aeon.
Examples
>>> from aeon.distances import get_distance_function_names >>> names = get_distance_function_names() >>> names[0] 'adtw'