power_law1d-1.0.0¶
One dimensional power law model.
Description
One dimensional power law model.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
amplitude
object Required Model amplitude at the reference point.
This node must validate against any of the following:
number
x_0
object Required Reference point.
This node must validate against any of the following:
number
alpha
object Required Power law index.
This node must validate against any of the following:
number
Examples ¶
\[f(x) = 10*(x/0.5)^{-2}\]
!transform/power_law1d-1.0.0 {alpha: 2.0, amplitude: 10.0, x_0: 0.5}
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/power_law1d-1.0.0"
title: >
One dimensional power law model.
description: >
One dimensional power law model.
examples:
-
- $$f(x) = 10*(x/0.5)^{-2}$$
- |
!transform/power_law1d-1.0.0 {alpha: 2.0, amplitude: 10.0, x_0: 0.5}
allOf:
- $ref: "transform-1.2.0"
- type: object
properties:
amplitude:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: Model amplitude at the reference point.
x_0:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: Reference point.
alpha:
anyOf:
- $ref: "../unit/quantity-1.1.0"
- type: number
description: Power law index.
required: ['amplitude', 'x_0', 'alpha']
...