power-1.2.0¶
Perform a list of subtransforms in parallel and then raise each result to the power of the next.
Description
Each of the subtransforms must have the same number of inputs and outputs.
Invertibility: This transform is not automatically invertible.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
forward
No length restrictionarray Required Items in the array are restricted to the following types:
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/power-1.2.0"
title: >
Perform a list of subtransforms in parallel and then raise each
result to the power of the next.
description: |
Each of the subtransforms must have the same number of inputs and
outputs.
Invertibility: This transform is not automatically invertible.
allOf:
- $ref: "transform-1.2.0"
- properties:
forward:
type: array
items:
$ref: "transform-1.2.0"
required: [forward]
...