Main Content

uplus,+

Description

example

C = +Areturns arrayAand stores it inC.

C = uplus(A)is an alternate way to execute+A, but is rarely used. It enables operator overloading for classes.

Examples

collapse all

Create a 2-by-2 matrix,A.

A = [1 -3; -2 4]
A =2×21 -3 -2 4

Use unary plus onA.

C = +A
C =2×21 -3 -2 4

CandAare the same.

Input Arguments

collapse all

Input array, specified as a scalar, vector, matrix, or multidimensional array.

Data Types:single|double|int8|int16|int32|int64|uint8|uint16|uint32|uint64|logical|char|duration|calendarDuration
Complex Number Support:Yes

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

GPU Code Generation
Generate CUDA® code for NVIDIA® GPUs using GPU Coder™.

Version History

Introduced before R2006a