ReferenceintervalList

<intervalList>

A list of intervals

<intervalList> is a Math component that collects a sequence of intervals.

When creating an <intervalList>, separate items by spaces, not commas. The component will default to displaying the list with commas. (The commas that appear inside each interval — e.g. (-1, 2) — are part of the interval itself, not separators between intervals.)

Attributes and Properties

Attributes for <intervalList>

Other (8)
asList

boolean. Default value: true. Whether to render the items separated by commas (true) or with no separator (false).

avoidScientificNotation

Whether to render numbers in full decimal form rather than scientific notation.

displayDecimals

Number of decimal places to display when rendering this number.

displayDigits

Number of significant digits to display when rendering this number.

displaySmallAsZero

Threshold below which numbers are displayed as zero.

maxNumber

number. Default value: Infinity. Maximum number of intervals to retain in the list.

padZeros

Whether to pad displayed numbers with trailing zeros to fill the requested digits/decimals.

unordered

boolean. Default value: false. Whether the order of intervals in this list should be treated as unordered (e.g. for matching).

Common to all components (9)
copy

reference. Create an independent copy of another component by reference. Enter a references a $name.

disabled

boolean. Default value: false. Whether this component is disabled and cannot be interacted with.

extend

reference. Extend another component by reference, inheriting its children and attributes. Enter a reference as $name.

fixed

Default value: false. Whether this component's value is fixed and cannot be modified.

fixLocation

boolean. Default value: false. Whether this component's location is fixed (preventing it from being moved while still allowing other modifications).

hide

boolean. Default value: false. Whether to hide this component from the rendered output.

isResponse

Whether this component is treated as a response for the purposes of assessment.

name

text. The name used to reference this component from elsewhere in the document.

styleNumber

integer. Default value: 1. The style number used to select this component's visual styling from the available style definitions.

Properties for <intervalList name="i">

Other (4)
$i.maxNumber

number. Maximum number of intervals to retain in the list.

$i.numIntervals

number. The number of intervals in the list.

$i.numValues

number. The number of intervals in the list.

$i.unordered

boolean. Whether the order of items in this list should be treated as unordered (e.g. for matching).

Common to all components (3)
$i.doenetML

text. The DoenetML source code that produced this component.

$i.hide

boolean. Whether to hide this component from the rendered output.

$i.styleNumber

integer. The style number used to select this component's visual styling from the available style definitions.

Examples

Example: <intervalList> as domain of a <piecewiseFunction>

Individual intervals in an <intervalList> can be accessed using array notation.