logarithmic1d-1.0.0

One dimensional (natural) logarithmic model.

Description

One dimensional (natural) logarithmic 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 log.

      This node must validate against any of the following:

Examples

\[f(x) = 10.0ln(\frac{x}{2.5})\]
!transform/logarithmic1d-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/logarithmic1d-1.0.0"
title: >
  One dimensional (natural) logarithmic model.

description: >
  One dimensional (natural) logarithmic model.

examples:
  -
    - $$f(x) = 10.0ln(\frac{x}{2.5})$$
    - |
      !transform/logarithmic1d-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 log.

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