Main Content

getNumScatterers

Number of scatterers on bicyclist

Since R2019b

Description

example

N = getNumScatterers(bicyclist) returns the number of scatterers, N, on the bicyclist.

Examples

collapse all

Use the getNumScatterers object function to find the number of scatterers on a bicyclist with 25 spokes. Create the backscatterBicyclist object and then call getNumScatterers.

fc = 77e9;
bicyclist = backscatterBicyclist( ...
    'OperatingFrequency',fc,'NumWheelSpokes',25, ...
    'InitialPosition',[5;0;0]);
N = getNumScatterers(bicyclist)
N = 359

Input Arguments

collapse all

Bicyclist, specified as a backscatterBicyclist object.

Output Arguments

collapse all

Number of scatterers on bicyclist, returned as a positive integer.

Extended Capabilities

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

Version History

Introduced in R2019b

See Also

| |