getNumSubarrays

System object: phased.PartitionedArray
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. This number matches the number of rows in the SubarraySelection property of H.

Input Arguments

H

Partitioned array object.

Examples

expand all

Obtain the number of subarrays in a partitioned array.

array = phased.PartitionedArray('Array',...
   phased.ULA('NumElements',5),...
   'SubarraySelection',[1 1 1 0 0; 0 0 1 1 1]);
N = getNumSubarrays(array)
N = 2