getNumSubarrays

System object: phased.ReplicatedSubarray
Package: phased

Number of subarrays in array

Syntax

N = getNumSubarrays(H)

Description

N = getNumSubarrays(H) returns the number of subarrays in the array object H.

Input Arguments

H

Array object consisting of replicated subarrays.

Examples

expand all

Create an array by tiling copies of a ULA in a 2-by-5 grid. Then, obtain the number of subarrays.

subarrays = phased.ReplicatedSubarray('Subarray',...
    phased.ULA('NumElements',3),'GridSize',[2 5]);
N = getNumSubarrays(subarrays)
N = 10