Main Content

dsp.ArrayVectorAdder

(To be removed) Add array to vector along specified dimension

dsp.ArrayVectorAdderwill be removed in a future release. Use the+operator instead. For more information, seeCompatibility Considerations.

Description

TheArrayVectorAdderobject adds an N-D array to a vector along a specified dimension. The length of the vector must equal the size of the N-D array along the specified dimension.

添加一个一天沿着指定的数组来一个向量dimension:

  1. Define and set up your array-vector addition object. SeeConstruction.

  2. Callstepto add the N-D array according to the properties ofdsp.ArrayVectorAdder. The behavior ofstepis specific to each object in the toolbox.

Note

Starting in R2016b, instead of using thestepmethod to perform the operation defined by the System object™, you can call the object with arguments, as if it were a function. For example,y = step(obj,x)andy = obj(x)perform equivalent operations.

Construction

ava = dsp.ArrayVectorAdderreturns an array-vector addition object,ava, that adds a vector to an N-D array along the first dimension.

ava = dsp.ArrayVectorAdder('PropertyName',PropertyValue, ...)returns an array-vector addition object,ava, with each property set to the specified value.

Properties

Dimension

Dimension along which to add vector elements to input

Specify the dimension along which to add the input array to the elements of the vector as a positive integer. The length of the vector must match the size of the N-D array along the specified dimension. The default is1.

VectorSource

Source of vector

Specify the source of the vector values as |Input port|Property|. The default isInput port.

Vector

Vector values

Specify the vector values. This property applies only when you set theVectorSourceproperty toProperty. The default is[0.5 0.25]. This property is tunable.

Fixed-Point Properties

Methods

step Add vector to N-D array
Common to All System Objects
release

Allow System object property value changes

Examples

collapse all

Note

If you are using R2016a or an earlier release, replace each call to the object with the equivalent step syntax. For example,obj(x)becomesstep(obj,x).

Add a 2-by-1 vector to a 2-by-2 matrix along the first dimension of the array.

ava = dsp.ArrayVectorAdder; a = ones(2); x = [1 2]'; y = ava(a, x);

Algorithms

This object implements the algorithm, inputs, and outputs described on theArray-Vector Addblock reference page. The object properties correspond to the block parameters, except:

The array-vector addition object does not haveMinimumorMaximumoptions for data output.

Extended Capabilities

Version History

Introduced in R2012a

expand all

Warns starting in R2021b