math_functions-1.0.0¶
Math functions.
Description
Commonly used math funcitons.
Outline
Schema Definitions ¶
This node must validate against all of the following:
This type is an object with the following properties:
func_name
string No length restrictionThe name of a numpy ufunc.
Examples ¶
Atan2:
!transform/math_functions-1.0.0
func_name: arctan2
Original Schema ¶
%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/math_functions-1.0.0"
title: >
Math functions.
description: |
Commonly used math funcitons.
examples:
-
- Atan2
- |
!transform/math_functions-1.0.0
func_name: arctan2
allOf:
- $ref: "transform-1.2.0"
- type: object
properties:
func_name:
type: string
description: |
The name of a numpy ufunc.
...