Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 2.1 KB

elementwise_arrays_arithmetics.rst

File metadata and controls

47 lines (37 loc) · 2.1 KB

{% extends "plugin_template.rst" %}

{% block title %}Elementwise Arrays Arithmetics{% endblock %}

{% block description %} Basic arithmetic operations on two input datasets: addition, subtraction, multiplication and division. {% endblock %}

{% block parameter_yaml %}

in_datasets:

visibility: datasets dtype: "[list[],list[str]]" description: summary: A list of the dataset(s) to process. verbose: A list of strings, where each string gives the name of a dataset that was either specified by a loader plugin or created as output to a previous plugin. The length of the list is the number of input datasets requested by the plugin. If there is only one dataset and the list is left empty it will default to that dataset. default: "[]"

out_datasets:

visibility: datasets dtype: "[list[],list[str]]" description: summary: A list of the dataset(s) to create. verbose: A list of strings, where each string is a name to be assigned to a dataset output by the plugin. If there is only one input dataset and one output dataset and the list is left empty, the output will take the name of the input dataset. The length of the list is the number of output datasets created by the plugin. default: "[]"

operation:

visibility: basic dtype: str description: Arithmetic operation to apply to data, choose from addition, subtraction, multiplication and division. options: "['addition', 'subtraction', 'multiplication', 'division']" default: multiplication

pattern:

visibility: advanced dtype: str options: "['SINOGRAM', 'PROJECTION', 'VOLUME_XZ', 'VOLUME_YZ']" description: Pattern to apply this to. default: VOLUME_XZ

{% endblock %}

{% block plugin_citations %}

No citations

{% endblock %}

{% block plugin_file %}../../../plugin_api/plugins.basic_operations.elementwise_arrays_arithmetics.rst{% endblock %}