USRP Hardware Driver and USRP Manual  Version: 4.6.0.0-7-gece7c4811
UHD and USRP Manual
uhd::range_t Class Reference

#include <uhd/types/ranges.hpp>

Public Member Functions

 range_t (double value=0)
 
 range_t (double start, double stop, double step=0)
 
double start (void) const
 Get the start value for this range. More...
 
double stop (void) const
 Get the stop value for this range. More...
 
double step (void) const
 Get the step value for this range. More...
 
const std::string to_pp_string (void) const
 Convert this range to a printable string. More...
 
bool operator== (const range_t &other) const
 Equality operator. More...
 
bool operator!= (const range_t &other) const
 Inequality operator. More...
 

Detailed Description

A range object describes a set of discrete values of the form: y = start + step*n, where n is an integer between 0 and (stop - start)/step

Constructor & Destructor Documentation

◆ range_t() [1/2]

uhd::range_t::range_t ( double  value = 0)

Create a range from a single value. The step size will be taken as zero.

Parameters
valuethe only possible value in this range

◆ range_t() [2/2]

uhd::range_t::range_t ( double  start,
double  stop,
double  step = 0 
)

Create a range from a full set of values. A step size of zero implies infinite precision.

Parameters
startthe minimum value for this range
stopthe maximum value for this range
stepthe step size for this range

Member Function Documentation

◆ operator!=()

bool uhd::range_t::operator!= ( const range_t other) const

Inequality operator.

◆ operator==()

bool uhd::range_t::operator== ( const range_t other) const

Equality operator.

◆ start()

double uhd::range_t::start ( void  ) const

Get the start value for this range.

◆ step()

double uhd::range_t::step ( void  ) const

Get the step value for this range.

◆ stop()

double uhd::range_t::stop ( void  ) const

Get the stop value for this range.

◆ to_pp_string()

const std::string uhd::range_t::to_pp_string ( void  ) const

Convert this range to a printable string.


The documentation for this class was generated from the following file: