perturbations

Perturbation defined on object

Description

example

perturbs = perturbations(obj) returns the list of property perturbations, perturbs, defined on the object, obj. The returned perturbs lists all the perturbable properties. If any property is not perturbed, then its corresponding Type is returned as "Null" and its corresponding Value is returned as {Null,Null}.

perturbs = perturbations(obj,property) returns the current perturbation applied to the specified property.

perturbs = perturbations(obj,property,'None') defines a property that must not be perturbed.

example

perturbs = perturbations(obj,property,'Selection',values,probabilities) defines the property perturbation offset drawn from a set of values that have corresponding probabilities.

perturbs = perturbations(obj,property,'Normal',mean,deviation) defines the property perturbation offset drawn from a normal distribution with specified mean and standard deviation.

example

perturbs = perturbations(obj,property,'Uniform',minVal,maxVal) defines the property perturbation offset drawn from a uniform distribution on an interval [minVal, maxValue].

perturbs = perturbations(obj,property,'Custom',perturbFcn) enables you to define a custom function, perturbFcn, that draws the perturbation offset value.

Examples

collapse all

Create a waypointTrajectory object.

traj = waypointTrajectory;

Show the default perturbation properties using the perturbations method.

perturbs = perturbations(traj)
perturbs=2×3 table
       Property         Type           Value       
    _______________    ______    __________________

    "Waypoints"        "None"    {[NaN]}    {[NaN]}
    "TimeOfArrival"    "None"    {[NaN]}    {[NaN]}

Create an insSensor object.

sensor = insSensor
sensor = 
  insSensor with properties:

        RollAccuracy: 0.2                deg
       PitchAccuracy: 0.2                deg
         YawAccuracy: 1                  deg
    PositionAccuracy: 1                  m  
    VelocityAccuracy: 0.05               m/s
        RandomStream: 'Global stream'       

Define the perturbation on the RollAccuracy property as three values with an equal possibility each.

values = {0.1 0.2 0.3}
values=1×3 cell array
    {[0.1000]}    {[0.2000]}    {[0.3000]}

probabilities = [1/3 1/3 1/3]
probabilities = 1×3

    0.3333    0.3333    0.3333

perturbations(sensor,'RollAccuracy','Selection',values,probabilities)
ans=5×3 table
         Property            Type                  Value           
    __________________    ___________    __________________________

    "RollAccuracy"        "Selection"    {1x3 cell}    {1x3 double}
    "PitchAccuracy"       "None"         {[   NaN]}    {[     NaN]}
    "YawAccuracy"         "None"         {[   NaN]}    {[     NaN]}
    "PositionAccuracy"    "None"         {[   NaN]}    {[     NaN]}
    "VelocityAccuracy"    "None"         {[   NaN]}    {[     NaN]}

Perturb the sensor object using the perturb function.

rng(2020)
perturb(sensor);
sensor
sensor = 
  insSensor with properties:

        RollAccuracy: 0.5                deg
       PitchAccuracy: 0.2                deg
         YawAccuracy: 1                  deg
    PositionAccuracy: 1                  m  
    VelocityAccuracy: 0.05               m/s
        RandomStream: 'Global stream'       

The RollAccuracy is perturbed to 0.5 deg.

Define a waypoint trajectory. By default, this trajectory contains two waypoints.

traj = waypointTrajectory
traj = 
  waypointTrajectory with properties:

         SampleRate: 100
    SamplesPerFrame: 1
          Waypoints: [2x3 double]
      TimeOfArrival: [2x1 double]
         Velocities: [2x3 double]
             Course: [2x1 double]
        GroundSpeed: [2x1 double]
          ClimbRate: [2x1 double]
        Orientation: [2x1 quaternion]
          AutoPitch: 0
           AutoBank: 0
     ReferenceFrame: 'NED'

Define perturbations on the Waypoints property and the TimeOfArrival property.

rng(2020);
perturbs1 = perturbations(traj,'Waypoints','Normal',1,1)
perturbs1=2×3 table
       Property          Type            Value       
    _______________    ________    __________________

    "Waypoints"        "Normal"    {[  1]}    {[  1]}
    "TimeOfArrival"    "None"      {[NaN]}    {[NaN]}

perturbs2 = perturbations(traj,'TimeOfArrival','Selection',{[0;1],[0;2]})
perturbs2=2×3 table
       Property           Type                  Value           
    _______________    ___________    __________________________

    "Waypoints"        "Normal"       {[     1]}    {[       1]}
    "TimeOfArrival"    "Selection"    {1x2 cell}    {1x2 double}

Perturb the trajectory.

offsets = perturb(traj)
offsets=2×1 struct array with fields:
    Property
    Offset
    PerturbedValue

The Waypoints property and the TimeOfArrival property have changed.

traj.Waypoints
ans = 2×3

    1.8674    1.0203    0.7032
    2.3154   -0.3207    0.0999

traj.TimeOfArrival
ans = 2×1

     0
     2

Input Arguments

collapse all

Perturbable property, specified as a property name. For each object listed in obj, the corresponding perturbable properties are listed in More About.

Perturbation offset values, specified as an n-element cell array of property values. The function randomly draws the perturbation value for the property from the cell array based on the values' corresponding probabilities specified in the probabilities input.

Drawing probabilities for each perturbation value, specified as an n-element array of nonnegative scalars, where n is the number of perturbation values provided in the values input. The sum of all elements must be equal to one.

For example, you can specify a series of perturbation value-probability pair as {x1,x2,…,xn} and {p1,p2,…,pn}, where the probability of drawing xi is pi (i = 1, 2, …,n).

Mean of normal distribution, specified as a scalar, vector, or matrix. The dimension of mean must be compatible with the corresponding property that you perturb.

Standard deviation of normal distribution, specified as a nonnegative scalar, vector of nonnegative scalars, or matrix of nonnegative scalars. The dimension of deviation must be compatible with the corresponding property that you perturb.

Minimum value of the uniform distribution interval, specified as a scalar, vector, or matrix. The dimension of minVal must be compatible with the corresponding property that you perturb.

Maximum value of the uniform distribution interval, specified as a scalar, vector, or matrix. The dimension of maxVal must be compatible with the corresponding property that you perturb.

Perturbation function, specified as a function handle. The function must have this syntax:

offset = myfun(propVal)
where propVal is the value of the property and offset is the perturbation offset for the property.

Output Arguments

collapse all

Perturbations defined on the object, returned as a table of perturbation properties. The table has three columns:

  • Property — Property names.

  • Type — Type of perturbations, returned as "None", "Selection""Normal", "Uniform", or "Custom".

  • Value — Perturbation values, returned as a cell array.

More About

collapse all

waypointTrajectory Perturbable Properties

The perturbable properties of waypointTrajectory are:

  • Waypoints

  • TimeOfArrival

Other properties of waypointTrajectory cannot be perturbed.

geoTrajectory Perturbable Properties

The perturbable properties of waypointTrajectory are:

  • Waypoints

  • TimeOfArrival

Other properties of waypointTrajectory cannot be perturbed.

kinematicTrajectory Perturbable Properties

The perturbable properties of kinematicTrajectory are:

  • Position

  • Velocity

Other properties of kinematicTrajectory cannot be perturbed.

insSensor Perturbable Properties

The perturbable properties of insSensor are:

  • RollAccuracy

  • PitchAccuracy

  • YawAccuracy

  • PositionAccuracy

  • VelocityAccuracy

Other properties of insSensor cannot be perturbed.

radarEmitter Perturbable Properties

The perturbable properties of radarEmitter are:

  • EIRP

  • CeneterFrequency

  • Bandwidth

  • WaveformTypes

  • ProcessingGain

Other properties of radarEmitter cannot be perturbed.

radarSensor Perturbable Properties

The perturbable properties of radarSensor are:

  • Sensitivity

  • FalseAlarmRate

  • DetectionThreshold

  • CeneterFrequency

  • Bandwidth

  • WaveformTypes

  • CofusionMatrix

  • AzimuthResolution

  • ElevationResolution

  • RangeResolution

  • RangeRateResolution

  • AzimuthBiasFraction

  • ElevationBiasFraction

  • RangeBiasFraction

  • RangeRateBiasFraction

Other properties of radarSensor cannot be perturbed.

monostaticRadarSensor Perturbable Properties

The perturbable properties of monostaticRadarSensor are:

  • DetectionProbability

  • FalseAlarmRate

  • ReferenceRange

  • ReferenceRCS

  • HasInterference

  • AzimuthResolution

  • ElevationResolution

  • RangeResolution

  • RangeRateResolution

  • AzimuthBiasFraction

  • ElevationBiasFraction

  • RangeBiasFraction

  • RangeRateBiasFraction

Other properties of monostaticRadarSensor cannot be perturbed.

sonarEmitter Perturbable Properties

The perturbable properties of sonarEmitter are:

  • SourceLevel

  • CenterFrequency

  • Bandwidth

  • WaveformType

  • ProcessingGain

Other properties of sonarEmitter cannot be perturbed.

sonarSensor Perturbable Properties

The perturbable properties of sonarSensor are:

  • FalseAlarmRate

  • AmbientNoiseLevel

  • CeneterFrequency

  • Bandwidth

  • WaveformTypes

  • CofusionMatrix

  • AzimuthResolution

  • ElevationResolution

  • RangeResolution

  • RangeRateResolution

  • AzimuthBiasFraction

  • ElevationBiasFraction

  • RangeBiasFraction

  • RangeRateBiasFraction

Other properties of sonarSensor cannot be perturbed.

irSensor Perturbable Properties

The perturbable properties of irSensor are:

  • FocalLength

  • MinClassificationArea

  • CutoffFreqency

  • DetectorArea

  • Detectivity

  • NoiseEquivalentBandwidth

  • FalseAlarmRate

  • AzimuthResolution

  • ElevationResolution

  • AzimuthBiasFraction

  • ElevationBiasFraction

Other properties of irSensor cannot be perturbed.

monostaticLidarSensor Perturbable Properties

The perturbable properties of irSensor are:

  • RangeAccuracy

Other properties of monostaticLidarSensor cannot be perturbed.

See Also

Introduced in R2020b