missing
Return a missing value.
πŸ“Syntax
m = missing()
πŸ“€Output Arguments
Parameter Description
m a missing value for use in arrays and tables
πŸ“„Description
missing returns a special value to represent missing (undefined data). When assigned into an array or table, the missing value is automatically converted into the standard missing value used by the array’s data type.
πŸ’‘Examples
A = missing()
A = double([1, 2, missing()])
B = string(["foo", missing()])
C = struct("Name", "Alice", "Age", missing())
πŸ”—See Also
ismissingmissingNaNstring
πŸ•”Version History
Version Description
1.15.0 initial version
Edit this page on GitHub