arcsine1d-1.0.0

One dimensional arcsine model.

Description

One dimensional arcsine.

Outline

Schema Definitions

This node must validate against all of the following:

  • This type is an object with the following properties:

    • amplitude

      objectRequired

      Oscillation amplitude.

      This node must validate against any of the following:

    • frequency

      objectRequired

      Oscillation frequency.

      This node must validate against any of the following:

    • phase

      objectRequired

      Oscillation phase.

      This node must validate against any of the following:

Examples

\[f(x)=((arcsin(x/10.0) / 2\pi) - 1.0) / 0.5\]
!transform/arcsine1d-1.0.0 {amplitude: 10.0, frequency: 0.5, phase: 1.0}

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/arcsine1d-1.0.0"
title: >
  One dimensional arcsine model.

description: >
  One dimensional arcsine.

examples:
  -
    - $$f(x)=((arcsin(x/10.0) / 2\pi) - 1.0) / 0.5$$
    - |
      !transform/arcsine1d-1.0.0 {amplitude: 10.0, frequency: 0.5, phase: 1.0}

allOf:
  - $ref: "transform-1.2.0"
  - type: object
    properties:
      amplitude:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Oscillation amplitude.
      frequency:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Oscillation frequency.
      phase:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Oscillation phase.

    required: ['amplitude', 'frequency', 'phase']
...