Method: Polars::Expr#dot
- Defined in:
- lib/polars/expr.rb
#dot(other) ⇒ Expr
Compute the dot/inner product between two Expressions.
1231 1232 1233 1234 |
# File 'lib/polars/expr.rb', line 1231 def dot(other) other = Utils.parse_into_expression(other, str_as_lit: false) wrap_expr(_rbexpr.dot(other)) end |