VariabilityChart Properties
R2026bVariabilityChart properties control the appearance and behavior
of a VariabilityChart object. By changing property values, you can modify
certain aspects of the object. Use dot notation to query and set properties.
v = variabilitychart({["A" "A" "B" "B"], [1 2 1 2]}, randi(100,1,4));
f = v.FactorNames;
v.Color = [0 0.5 0.5];Data Display
Factor names, specified as a string array, cell array of character vectors, or
categorical array. FactorNames must have one name for each cell in
Factors.
The factor names are displayed along the y-axis of the chart in
line with each factors' level names. To remove factor names from the chart, specify an
empty cell array ({}) for FactorNames.
If you pass a table to variabilitychart during creation,
FactorNames is the names of the table variables specified in
FactorVariables by default. If you pass a cell array or vector to
variabilitychart during creation,
FactorNames is
{'Factor1','Factor2',...,'Factorn'}, where
n is the number of factors by default.
Example: FactorNames=["F1","F2","F3"]
Data Types: char | string | cell | categorical
How FactorNames
is set, specified as one of these values:
"auto"— MATLAB® determines and sets the value ofFactorNamesbased on the syntax used to create theVariabilityChart."manual"— You set the value ofFactorNamesmanually, either by specifying the factor names when you create aVariabilityChartobject or by setting theFactorNamesproperty after creating the object.
If you change the value of FactorNames manually, the software
changes the value of the FactorNamesMode property to
"manual".
Example: FactorNamesMode="manual"
Display names of the factor levels, specified as a cell array of vectors. Each cell
in LevelsDisplayNames corresponds to a factor and must contain a
vector with one element for each unique level in that factor. The level names are
displayed in rows by factor along the x-axis.
The default value of LevelsDisplayNames is Levels. Use
LevelsDisplayNames to provide alternate display names to the
level names stored in Levels.
Example: LevelsDisplayNames={["A1","A2","A3"],["B1","B2"]}
Data Types: cell
How LevelsDisplayNames is set, specified as one of these values:
"auto"— MATLAB sets the value ofLevelsDisplayNamesto the value ofLevels."manual"— You set the value ofLevelsDisplayNamesmanually by setting theLevelsDisplayNamesproperty after creating the object.
If you change the value of LevelsDisplayNames manually, the
software changes the value of the LevelsDisplayNamesMode property
to "manual".
Example: LevelsDisplayNamesMode="manual"
Indicator to add separators between the factor levels, specified as a positive integer or vector of positive integers. The integer values must be in the range [1,n] where n is the number of factors.
The software adds a vertical grid line separator when the level changes for each
factor specified by FactorsWithSeparators. If the level changes
because of a change to a factor not specified in
FactorsWithSeparators, the software does not add a
separator.
Example: FactorsWithSeparators=3
Data Types: single | double
Indicator to add boxes around the factor levels, specified as a positive integer or vector of positive integers. The integer values must be in the range [1,n] where n is the number of factors.
The software adds a box around the level data for each factor specified by
FactorsWithBoxes.
Example: FactorsWithBoxes=2
Data Types: single | double
Indicator to add mean lines to the factor levels, specified as a positive integer or vector of positive integers. The integer values must be in the range [1,n] where n is the number of factors.
The software adds horizontal lines at the mean value of each level for each factor
specified by FactorsWithMeans.
Example: FactorsWithMeans=1
Data Types: single | double
Indicator to color the factor levels, specified as a positive integer. The integer value must be in the range [1,n] where n is the number of factors.
The software uses the ColorOrder
property to set a different color to each of the levels in the specified factor. This
property is valid only when Color is
"flat".
Example: FactorWithColors=4
Data Types: single | double
Target value, specified as a numeric scalar. The software adds a horizontal line at
y = .TargetValue
Example: TargetValue=12
Data Types: single | double
How the YLimits
property is set, specified as one of these values:
"auto"— MATLAB controls the value ofYLimitsby calculating it automatically."manual"— You set the value ofYLimitsmanually, either by specifying the values when you create aVariabilityChartobject or by setting theYLimitsproperty after creating the object.
If you change the value of YLimits manually, the software
changes the value of the YLimitsMode property to
"manual".
Example: YLimitsMode="manual"
Labels
Chart title, specified as a character vector, cell array of character vectors, string array, or categorical array. To create a multiline title, specify a cell array of character vectors, a string array, or a categorical array. Each element in the array corresponds to a line of text.
By default, VariabilityChart objects support a subset of TeX markup
for the text you specify. Use TeX markup to add superscripts and subscripts, modify the
font type and color, and include special characters in the text. If you want a TeX
markup character in regular text, such as an underscore (_), then insert a backslash (\)
before the character you want to include. The backslash is the TeX escape character. For
more information, see the Interpreter property of the text
object.
Alternatively, use the title function to add a title to the
chart.
Example: Title="Chart Title"
Data Types: char | string | cell | categorical
Chart subtitle, specified as a character vector, cell array of character vectors, string array, or categorical array. To create a multiline subtitle, specify a cell array of character vectors, a string array, or a categorical array. Each element in the array corresponds to a line of text.
By default, VariabilityChart objects support a subset of TeX markup
for the text you specify. Use TeX markup to add superscripts and subscripts, modify the
font type and color, and include special characters in the text. If you want a TeX
markup character in regular text, such as an underscore (_), then insert a backslash (\)
before the character you want to include. The backslash is the TeX escape character. For
more information, see the Interpreter property of the text
object.
Alternatively, use the title or subtitle
functions to add a subtitle to the chart.
Example: Subtitle="Chart Subitle"
Data Types: char | string | cell | categorical
Label for the x-axis, specified as a character vector, cell array
of character vectors, string array, or categorical array. To create a multiline label,
specify a cell array of character vectors, a string array, or a categorical array. Each
element in the array corresponds to a line of text. You can also use the
function to set xlabelXLabel.
By default, VariabilityChart objects support a subset of TeX markup
for the text you specify. Use TeX markup to add superscripts and subscripts, modify the
font type and color, and include special characters in the text. If you want a TeX
markup character in regular text, such as an underscore (_), then insert a backslash (\)
before the character you want to include. The backslash is the TeX escape character. For
more information, see the Interpreter property of the text
object.
Example: XLabel="X Axis"
Data Types: char | string | cell | categorical
Label for the y-axis, specified as a character vector, cell array
of character vectors, string array, or categorical array. To create a multiline label,
specify a cell array of character vectors, a string array, or a categorical array. Each
element in the array corresponds to a line of text. You can also use the
function to set ylabelYLabel.
By default, VariabilityChart objects support a subset of TeX markup
for the text you specify. Use TeX markup to add superscripts and subscripts, modify the
font type and color, and include special characters in the text. If you want a TeX
markup character in regular text, such as an underscore (_), then insert a backslash (\)
before the character you want to include. The backslash is the TeX escape character. For
more information, see the Interpreter property of the text
object.
Example: YLabel="Y Axis"
Data Types: char | string | cell | categorical
How the YLabel
property is set, specified as one of these values:
"auto"— MATLAB sets the value ofYLabeltoYVariable."manual"— You set the value ofYLabelmanually, either by specifying the y-axis label when you create aVariabilityChartobject or by setting theYLabelproperty after creating the object.
If you change the value of YLabel manually, the software
changes the value of the YLabelMode property to
"manual".
Example: YLabelMode="manual"
Label for the target value line, specified as a string scalar or character vector.
The software displays the label to the right of the y-axis followed
by the value of TargetValue. Set TargetValueLabel to an empty string
("") to remove the label from the chart.
Example: TargetValueLabel="ProductionTarget"
Data Types: char | string
How the TargetValueLabel property is set, specified as one of these values:
"auto"— MATLAB sets the value ofTargetValueLabelto"Target value:"."manual"— You set the value ofTargetValueLabelmanually, either by specifying the target value label when you create aVariabilityChartobject or by setting theTargetValueLabelproperty after creating the object.
If you change the value of TargetValueLabel manually, the
software changes the value of the TargetValueLabelMode property to
"manual".
Example: TargetValueLabelMode="manual"
Text interpreter, specified as one of these values:
"tex"— Interpret characters using a subset of TeX markup."latex"— Interpret characters using LaTeX markup."none"— Display literal characters.
MATLAB uses the interpreter when displaying a chart title, axis labels, or any data that includes text or symbols.
TeX Markup
By default, MATLAB supports a subset of TeX markup. Use TeX markup to add superscripts and subscripts, modify the font type and color, and include special characters in the text.
Modifiers remain in effect until the end of the
text. Superscripts and subscripts are an exception because they modify only the next
character or the characters within the curly braces. When you set the interpreter to
"tex", the supported modifiers are as follows.
| Modifier | Description | Example |
|---|---|---|
^{ } | Superscript | "text^{superscript}" |
_{ } | Subscript | "text_{subscript}" |
\bf | Bold font | "\bf text" |
\it | Italic font | "\it text" |
\sl | Oblique font (usually the same as italic font) | "\sl text" |
\rm | Normal font | "\rm text" |
\fontname{ | Font name — Replace
with the name of
a font family. You can use this in combination with other modifiers. | "\fontname{Courier} text" |
\fontsize{ | Font size —Replace
with a numeric
scalar value in point units. | "\fontsize{15} text" |
\color{ | Font color — Replace
with one of
these colors: red, green,
yellow, magenta,
blue, black,
white, gray,
darkGreen, orange, or
lightBlue. | "\color{magenta} text" |
\color[rgb]{specifier} | Custom font color — Replace
with a
three-element RGB triplet. | "\color[rgb]{0,0.5,0.5} text" |
This table lists the supported special character
sequences for the "tex" interpreter. Some of the symbols look
slightly different than they do in MATLAB.
| Character Sequence | Symbol | Character Sequence | Symbol | Character Sequence | Symbol |
|---|---|---|---|---|---|
| α |
| υ |
| ~ |
| ∠ |
| ϕ |
| ≤ |
|
|
| χ |
| ∞ |
| β |
| ψ |
| ♣ |
| γ |
| ω |
| ♦ |
| δ |
| Γ |
| ♥ |
| ϵ |
| Δ |
| ♠ |
| ζ |
| Θ |
| ↔ |
| η |
| Λ |
| ← |
| θ |
| Ξ |
| ⇐ |
| ϑ |
| Π |
| ↑ |
| ι |
| Σ |
| → |
| κ |
| ϒ |
| ⇒ |
| λ |
| Φ |
| ↓ |
| µ |
| Ψ |
| º |
| ν |
| Ω |
| ± |
| ξ |
| ∀ |
| ≥ |
| π |
| ∃ |
| ∝ |
| ρ |
| ∍ |
| ∂ |
| σ |
| ≅ |
| • |
| ς |
| ≈ |
| ÷ |
| τ |
| ℜ |
| ≠ |
| ≡ |
| ⊕ |
| ℵ |
| ℑ |
| ∪ |
| ℘ |
| ⊗ |
| ⊆ |
| ∅ |
| ∩ |
| ∈ |
| ⊇ |
| ⊃ |
| ⌈ |
| ⊂ |
| ∫ |
| · |
| ο |
| ⌋ |
| ¬ |
| ∇ |
| ⌊ |
| x |
| ... |
| ⊥ |
| √ |
| ´ |
| ∧ |
| ϖ |
| ∅ |
| ⌉ |
| 〉 |
| | |
| ∨ |
| 〈 |
| © |
LaTeX Markup
To use LaTeX markup, set the interpreter to "latex". For inline
mode, surround the markup with single dollar signs ($). For display
mode, surround the markup with double dollar signs
($$).
| LaTeX Mode | Example | Result |
|---|---|---|
| Inline |
"$\int_1^{20} x^2 dx$" |
|
| Display |
"$$\int_1^{20} x^2 dx$$" |
|
The displayed text uses the default LaTeX font style. To change the font style, use LaTeX markup.
The maximum size of the text that you can use with the LaTeX interpreter is 1200 characters. For multiline text, this reduces by about 10 characters per line.
MATLAB supports most standard LaTeX math mode commands. For more information, see Supported LaTeX Commands. For examples that use TeX and LaTeX, see Greek Letters and Special Characters in Chart Text.
Color and Styling
Marker color, specified as a value from this table
FaceColor Value | Description |
|---|---|
"flat" | Let MATLAB assign marker colors. The colors are defined in the
|
| RGB triplet or hexadecimal color code | Assign a custom color to all the markers:
The two tables below provide the RGB triplets and hexadecimal color codes for some common colors. |
| Color name or short name | Assign one predefined color to all the markers using a color name
such as The table below lists the available color names and short names. |
"none" | Display all markers without any color. |
| Color Name | Short Name | RGB Triplet | Hexadecimal Color Code | Appearance |
|---|---|---|---|---|
"red" | "r" | [1 0 0] | "#FF0000" |
|
"green" | "g" | [0 1 0] | "#00FF00" |
|
"blue" | "b" | [0 0 1] | "#0000FF" |
|
"cyan"
| "c" | [0 1 1] | "#00FFFF" |
|
"magenta" | "m" | [1 0 1] | "#FF00FF" |
|
"yellow" | "y" | [1 1 0] | "#FFFF00" |
|
"black" | "k" | [0 0 0] | "#000000" |
|
"white" | "w" | [1 1 1] | "#FFFFFF" |
|
"none" | Not applicable | Not applicable | Not applicable | No color |
This table lists the default color palettes for plots in the light and dark themes.
| Palette | Palette Colors |
|---|---|
Before R2025a: Most plots use these colors by default. |
|
|
|
You can get the RGB triplets and hexadecimal color codes for these palettes using the orderedcolors and rgb2hex functions. For example, get the RGB triplets for the "gem" palette and convert them to hexadecimal color codes.
RGB = orderedcolors("gem");
H = rgb2hex(RGB);Before R2024a: Get the hexadecimal color codes using
H = compose("#%02X%02X%02X",round(RGB*255)).
Before R2023b: Get the RGB triplets using RGB =
get(groot,"FactoryAxesColorOrder").
Example: Color="#f00355"
Data Types: char | string | double
Color order, specified as a three-column matrix of RGB triplets. This property
defines the palette of colors MATLAB uses to color the data points by the factor
specified by FactorWithColors. Each row of the array is an RGB triplet. An RGB triplet
is a three-element vector whose elements specify the intensities of the red, green, and
blue components of a color. The intensities must be in the range [0, 1]. This table
lists the default colors.
| Colors | ColorOrder Matrix |
|---|---|
|
[ 0 0.4470 0.7410
0.8500 0.3250 0.0980
0.9290 0.6940 0.1250
0.4940 0.1840 0.5560
0.4660 0.6740 0.1880
0.3010 0.7450 0.9330
0.6350 0.0780 0.1840] |
MATLAB assigns colors to each level of the factor specified by the
FactorWithColors property according to the order of the
levels.
An alternative way to set this property is to pass the
VariabilityChart object to the colororder
function.
How the ColorOrder property is set,
specified as one of these values:
"auto"— MATLAB sets the value ofColorOrderto the default color order."manual"— You set the value ofColorOrdermanually, either by specifying the color order when you create aVariabilityChartobject or by setting theColorOrderproperty after creating the object.
If you change the value of ColorOrder manually, the software
changes the value of the ColorOrderMode property to
"manual".
Example: ColorOrderMode="manual"
Font size, specified as a positive scalar. FontSize is the same
for the title, labels, factor names, and level display names. The default font size
depends on the specific operating system and locale.
As you adjust the size of plot elements, the software automatically updates the font
size. However, changing the FontSize property disables this
automatic resizing.
Example: v.FontSize = 12
How the FontSize property is set,
specified as one of these values:
"auto"— MATLAB controls the value ofFontSizeby calculating it automatically."manual"— You set the value ofFontSizemanually, either by specifying the font size when you create aVariabilityChartobject or by setting theFontSizeproperty after creating the object.
If you change the value of FontSize manually, the software
changes the value of the FontSizeMode property to
"manual".
Example: FontSizeMode="manual"
Markers
Marker symbol, specified as one of the options listed in this table:
| Marker | Description | Resulting Marker |
|---|---|---|
"o" | Circle |
|
"+" | Plus sign |
|
"*" | Asterisk |
|
"." | Point |
|
"x" | Cross |
|
"_" | Horizontal line |
|
"|" | Vertical line |
|
"square" | Square |
|
"diamond" | Diamond |
|
"^" | Upward-pointing triangle |
|
"v" | Downward-pointing triangle |
|
">" | Right-pointing triangle |
|
"<" | Left-pointing triangle |
|
"pentagram" | Pentagram |
|
"hexagram" | Hexagram |
|
"none" | No markers | Not applicable |
Example: Marker="x"
Data Types: char | string
Marker size, specified as a nonnegative scalar, with values measured in points. One point equals 1/72 inches.
Example: MarkerSize=30
Data Types: single | double |
State of marker face fill, specified as "on" or
"off", or as numeric or logical 1
(true) or 0 (false). A value
of "on" is equivalent to true, and
"off" is equivalent to false. Thus, you can use
the value of this property as a logical value. The value is stored as an on/off logical
value of type matlab.lang.OnOffSwitchState.
"on"— Fill the interior of the markers."off"— Leave the interior of the markers empty.
Example: MarkerFilled="off"
Data Types: char | string
Marker transparency, specified as a numeric scalar with values between 0 and 1. Values closer to 0 specify more transparent markers, and values closer to 1 specify more opaque markers.
Example: MarkerAlpha=0.75
Data Types: single | double |
Data
Sample data, specified as a numeric vector. YData and all the
factor variables must have the same length.
Data Types: single | double
How the YData property is set,
specified as one of these values:
"auto"— TheYDataproperty updates automatically based on theSourceTableandYVariableproperties. This is the case when you pass a table tovariabilitychartduring creation."manual"— TheYDataproperty is set directly and does not update automatically. This is the case when you pass data values as a vector tovariabilitychartduring creation.
Example: YDataMode="manual"
Factor variables, specified as a numeric vector, logical vector, categorical vector,
string array, cell array of character vectors, or cell array of vectors. Each factor
variable must have the same length as YData.
Factors are sometimes called grouping variables. The
variabilitychart function groups the observations in
YData by their factor values. For more information on factors,
see Grouping Variables.
Data Types: single | double | char | string | cell | categorical
How the Factors property is set,
specified as one of these values:
"auto"— TheFactorsproperty updates automatically based on theSourceTableandFactorVariablesproperties. This is the case when you pass a table tovariabilitychartduring creation."manual"— TheFactorsproperty is set directly and does not update automatically. This is the case when you pass factor values as a vector or cell array tovariabilitychartduring creation.
Example: FactorsMode="manual"
Source table containing sample data and factors, specified as a table.
This property is valid only when you pass a table to
variabilitychart during creation.
Data Types: table
Table variable containing the sample data, specified using one of the indexing
schemes from the following table. The variable you specify must contain numeric values.
When you set this property, MATLAB updates the YData
property.
This table lists the different indexing schemes you can use to specify the table variable.
| Indexing Scheme | Examples |
|---|---|
Variable name:
|
|
Variable index:
|
|
Variable type:
|
|
Example: YVariable=3
Table variables containing factors, specified using one of the indexing schemes from
the following table. When you set this property, MATLAB updates the Factors
property.
This table lists the different indexing schemes you can use to specify the table variable.
| Indexing Scheme | Examples |
|---|---|
Variable name:
|
|
Variable index:
|
|
Variable type:
|
|
Example: FactorVariables=[1,2,3]
This property is read-only.
Factor levels, specified as a cell array of vectors. Levels
must have the same number of cells as Factors. Each
cell of Levels is a list of the categories found in the
corresponding cell of Factors.
The variabilitychart function automatically determines and sets
the value of Levels. To update the factor level labels displayed on
the chart, use the LevelsDisplayNames property.
Data Types: cell
Position
Position property to hold constant when adding, removing, or changing decorations, specified as one of the following values:
"outerposition"— TheOuterPositionproperty remains constant when you add, remove, or change decorations such as a title or an axis label. If any positional adjustments are needed, MATLAB adjusts theInnerPositionproperty."innerposition"— TheInnerPositionproperty remains constant when you add, remove, or change decorations such as a title or an axis label. If any positional adjustments are needed, MATLAB adjusts theOuterPositionproperty.
Outer size and position of the variability chart within the parent container
(typically a figure, panel, or tab), specified as a four-element numeric vector of the
form [left bottom width height]. The default value of [0 0 1
1] includes the whole interior of the container.
Example: OuterPosition=[0.25 0.25 0.5 0.5]
Data Types: single | double
Inner size and position of the chart within the parent container (typically a
figure, panel, or tab), specified as a four-element numeric vector of the form
[left bottom width height]. The inner position includes only the
variability chart.
The
leftandbottomelements define the distance from the lower left corner of the container to the lower left corner of the chart.The
widthandheightelements are the dimensions of the chart.
Example: InnerPosition=[0.25 0.25 0.5 0.5]
Data Types: single | double
Inner size and position of the chart within the parent container (typically a
figure, panel, or tab), specified as a four-element numeric vector of the form
[left bottom width height]. This property is equivalent to the
InnerPosition property.
Example: Position=[0.25 0.25 0.5 0.5]
Data Types: single | double
Position units, specified as one of these values.
| Value | Description |
|---|---|
"normalized" (default) | Normalized with respect to the container, which is typically the figure
or a panel. The lower left corner of the container maps to
(0,0), and the upper right corner maps to
(1,1). |
"inches" | Inches. |
"centimeters" | Centimeters. |
"characters" | Based on the default uicontrol font of the graphics root object:
|
"points" | Typography points. One point equals 1/72 inch. |
"pixels" | Pixels. On Windows® and Macintosh systems, the size of a pixel is 1/96th of an inch. This size is independent of your system resolution. On Linux® systems, the size of a pixel is determined by your system resolution. |
When specifying the units as a name-value pair during object creation, you must set
the Units property before specifying the properties that you want
to use these units for, such as OuterPosition.
Example: Units="points"
Data Types: char | string
Layout
Display the axes toolbar, specified as "on" or
"off", or as numeric or logical 1
(true) or 0 (false). A value
of "on" is equivalent to true, and
"off" is equivalent to false. Thus, you can use
the value of this property as a logical value. The value is stored as an on/off logical
value of type matlab.lang.OnOffSwitchState.
"on"— Display the toolbar."off"— Do not display the toolbar.
Example: ToolbarVisible="off"
Data Types: logical | char | string
State of visibility, specified as "on" or
"off", or as numeric or logical 1
(true) or 0 (false). A value
of "on" is equivalent to true, and
"off" is equivalent to false. Thus, you can use
the value of this property as a logical value. The value is stored as an on/off logical
value of type matlab.lang.OnOffSwitchState.
"on"— Display the variability chart."off"— Hide the variability chart without deleting it. You still can access the properties of an invisible object.
Example: Visible="off"
Data Types: logical | char | string
Layout options, specified as a TiledChartLayoutOptions or
GridLayoutOptions object. This property is useful when the chart
is either in a tiled chart layout or a grid layout.
To position the chart within the grid of a tiled chart layout, set the
Tile and TileSpan properties on the
TiledChartLayoutOptions object. For example, consider a 3-by-3
tiled chart layout. The layout has a grid of tiles in the center, and four tiles along
the outer edges. In practice, the grid is invisible and the outer tiles do not take up
space until you populate them with axes or charts.

This code places the chart c in the third tile of the
grid.
c.Layout.Tile = 3;
To make the chart span multiple tiles, specify the TileSpan
property as a two-element vector. For example, this chart spans 2
rows and 3 columns of
tiles.
c.Layout.TileSpan = [2 3];
To place the chart in one of the surrounding tiles, specify the
Tile property as "north",
"south", "east", or "west".
For example, setting the value to "east" places the chart in the tile
to the right of the
grid.
c.Layout.Tile = "east";To place the chart into a layout within an app, specify this property as a
GridLayoutOptions object. For more information about working with
grid layouts in apps, see uigridlayout.
If the chart is not a child of either a tiled chart layout or a grid layout (for example, if it is a child of a figure or panel) then this property is empty and has no effect.
Parent/Child
Parent container, specified as a Figure,
Panel, Tab,
TiledChartLayout, or GridLayout object.
Visibility of the VariabilityChart object handle
in the Children property of the parent, specified as one of these
values:
"on"— Object handle is always visible."off"— Object handle is always invisible. This option is useful for preventing unintended changes to the UI by another function. To temporarily hide the handle during the execution of that function, set theHandleVisibilityto"off"."callback"— Object handle is visible from within callbacks or functions invoked by callbacks, but not from within functions invoked from the command line. This option blocks access to the object at the command line, but allows callback functions to access it.
If the object is not listed in the Children property of the
parent, then functions that obtain object handles by searching the object hierarchy or
querying handle properties cannot return the object. These functions include get, findobj, gca, gcf, gco, newplot, cla, clf, and close.
Hidden object handles are still valid. Set the root
ShowHiddenHandles property to "on" to list all
object handles, regardless of their HandleVisibility property
setting.
Example: HandleVisibility="callback"
Data Types: char | string
Version History
Introduced in R2026b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Seleziona un sito web
Seleziona un sito web per visualizzare contenuto tradotto dove disponibile e vedere eventi e offerte locali. In base alla tua area geografica, ti consigliamo di selezionare: .
Puoi anche selezionare un sito web dal seguente elenco:
Come ottenere le migliori prestazioni del sito
Per ottenere le migliori prestazioni del sito, seleziona il sito cinese (in cinese o in inglese). I siti MathWorks per gli altri paesi non sono ottimizzati per essere visitati dalla tua area geografica.
Americhe
- América Latina (Español)
- Canada (English)
- United States (English)
Europa
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)


