sine1d-1.0.0¶
One dimensional sine model.
Description
One dimensional sine.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
amplitude
object Required Oscillation amplitude.
This node must validate against any of the following:
number
frequency
object Required Oscillation frequency.
This node must validate against any of the following:
number
phase
object Required Oscillation phase.
This node must validate against any of the following:
number
Examples ¶
\[f(x)=10.0sin(2\pi *0.5x+2\pi*1.0)\]
!transform/sine1d-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/sine1d-1.0.0"
title: >
One dimensional sine model.
description: >
One dimensional sine.
examples:
-
- $$f(x)=10.0sin(2\pi *0.5x+2\pi*1.0)$$
- |
!transform/sine1d-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']
...