Main Content

hasGPSDO

Determine if radio has GPSDO

Since R2026a

Description

tf = hasGPSDO(radio) returns logical 1 (true) if the radio associated with the radio object radio has a GPS disciplined oscillator (GPSDO) onboard, and logical 0 (false) otherwise.

example

Examples

collapse all

Create a radio object, specifying a radio setup configuration previously saved using the Radio Setup wizard.

radio = radioConfigurations("MyRadio");

Check if the radio has a GPSDO onboard.

tf = hasGPSDO(radio)
tf = logical
   1

Input Arguments

collapse all

Radio object, specified as a radio object that corresponds to a radio setup configuration you saved using the Radio Setup wizard.

To create a radio object, call the radioConfigurations function with the name of your radio setup configuration. For example, for a radio setup configuration named MyRadio, call radio = radioConfigurations("MyRadio").

Version History

Introduced in R2026a