Sin / Computation Layer

Calculate the sine of angle values (in radians). Similar to numpy.sin() or R's sin().

Mathematical form: where is in radians. Key properties:

  • Output range: [-1, 1]
  • Period: 2π ≈ 6.28318
  • Odd function: sin(-x) = -sin(x)

Common applications:

  • Wave analysis (sound, light)
  • Signal processing
  • Periodic phenomena modeling
  • Circular motion
  • Harmonic oscillation
  • Phase calculations

Note: Input values are assumed to be in radians.

Table
0
0
Table

Transforms

[, ...]

Select

column

The angle column (in radians) to compute sine values for. Common inputs:

  • Phase angles
  • Angular positions
  • Time series converted to radians
  • Periodic measurements
  • Wave phase values

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.