Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The function `series_cosine_similarity()` takes two numeric series as input, and

## Syntax

`series_cosine_similarity(`*series1*`,` *series2*`)`
`series_cosine_similarity(`*series1*`, `*series2*`, [`*magnitude1`, [`*magnitude2`]])`

[!INCLUDE [syntax-conventions-note](../includes/syntax-conventions-note.md)]

Expand All @@ -24,6 +24,7 @@ The function `series_cosine_similarity()` takes two numeric series as input, and
| Name | Type | Required | Description |
|--|--|--|--|
| *series1, series2* | `dynamic` | :heavy_check_mark: | Input arrays with numeric data. |
| *magnitude1, magnitude2* | `real` | | Optional magnitude of the first and the second vectors respectively. The magnitude is the square root of the dot product of the vector with itself. If the magnitude isn't provided, it will be calculated. |

## Returns

Expand Down
Loading