dsp.ArrayVectorDivider

Divide array by vector along specified dimension

Description

The ArrayVectorDivider object divides an array by a vector along a specified dimension.

To divide an array by a vector along a specified dimension:

  1. Define and set up your array-vector division object. See Construction.

  2. Call step to divide the array according to the properties of dsp.ArrayVectorDivider. The behavior of step is specific to each object in the toolbox.

Note

Starting in R2016b, instead of using the step method 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) and y = obj(x) perform equivalent operations.

Construction

avd = dsp.ArrayVectorDivider returns an array-vector division object, avd, that divides an input array by the elements of a vector along the first dimension of the array.

avd = dsp.ArrayVectorDivider('PropertyName',PropertyValue,...) returns an array-vector division object, avd, with each property set to the specified value.

Properties

Dimension

Dimension along which to divide input by vector elements

Specify the dimension along which to divide the input array by the elements of a vector as a positive integer. The default is 1.

VectorSource

Source of vector

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

Vector

Vector values

Specify the vector values. This property applies when you set the VectorSource property to Property. The default is [0.5 0.25]. This property is tunable.

 Fixed-Point Properties

Methods

stepDivide array by vector
Common to All System Objects
release

Allow System object property value changes

Examples

collapse all

Note: This example runs only in R2016b or later. If you are using an earlier release, replace each call to the function with the equivalent step syntax. For example, myObject(x) becomes step(myObject,x).

avd = dsp.ArrayVectorDivider;
a = ones(2)
a = 2×2

     1     1
     1     1

x = [2 3]'
x = 2×1

     2
     3

y = avd(a, x)
y = 2×2

    0.5000    0.5000
    0.3333    0.3333

Algorithms

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

The array-vector division object does not have Minimum or Maximum options for data output.

Extended Capabilities

Introduced in R2012a