exponential1d-1.0.0

One dimensional exponential model.

Description

One dimensional exponential model.

Outline

Schema Definitions

This node must validate against all of the following:

  • This type is an object with the following properties:

    • amplitude

      objectRequired

      Amplitude or scaling factor.

      This node must validate against any of the following:

    • r_core

      object

      Denominator in exponent.

      This node must validate against any of the following:

Examples

\[f(x) = 10.0e^{x/2.5}\]
!transform/exponential1d-1.0.0 {amplitude: 10.0, tau: 2.5}

Original Schema

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

description: >
  One dimensional exponential model.

examples:
  -
    - $$f(x) = 10.0e^{x/2.5}$$
    - |
      !transform/exponential1d-1.0.0 {amplitude: 10.0, tau: 2.5}

allOf:
  - $ref: "transform-1.2.0"
  - type: object
    properties:
      amplitude:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Amplitude or scaling factor.
      r_core:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Denominator in exponent.

    required: ['amplitude', 'tau']
...