specifyall

Полностью задайте параметры системного объекта фильтра с фиксированной точкой

Описание

пример

specifyall(sysobj) устанавливает все свойства типа данных с фиксированной точкой фильтра System object™ равными 'Custom' так что можно легко задать все настройки фиксированной точки. Если у объекта есть FullPrecisionOverride свойство, его значение установлено в false. specifyall предназначен как ярлык для изменения всех свойств с фиксированной точкой.

specifyall(sysobj,false) устанавливает все свойства фильтра с фиксированной точкой Системного объекта их значения по умолчанию и устанавливает фильтр в режим полной точности, если он доступен.

specifyall(sysobj,true) эквивалентно specifyall(sysobj).

Примеры

свернуть все

Использование specifyall для доступа ко всем настройкам конечной импульсной характеристики фильтра с фиксированной точкой, реализованным со структурой прямой формы. Использование specifyall отключает автоматическое масштабирование фильтра и устанавливает значения режима.

b = fircband(12,[0 0.4 0.5 1],[1 1 0 0],[1 0.2],{'w' 'c'});
firFilter = dsp.FIRFilter('Numerator',b);
get(firFilter)
ans = struct with fields:
                               Numerator: [1x13 double]
                  ReflectionCoefficients: [0.5000 0.5000]
                       InitialConditions: 0
                         NumeratorSource: 'Property'
            ReflectionCoefficientsSource: 'Property'
                               Structure: 'Direct form'
                   FullPrecisionOverride: 1
                          RoundingMethod: 'Floor'
                          OverflowAction: 'Wrap'
                    CoefficientsDataType: 'Same word length as input'
          ReflectionCoefficientsDataType: 'Same word length as input'
              CustomCoefficientsDataType: [1x1 embedded.numerictype]
    CustomReflectionCoefficientsDataType: [1x1 embedded.numerictype]
                         ProductDataType: 'Full precision'
                   CustomProductDataType: [1x1 embedded.numerictype]
                     AccumulatorDataType: 'Full precision'
               CustomAccumulatorDataType: [1x1 embedded.numerictype]
                           StateDataType: 'Same as accumulator'
                     CustomStateDataType: [1x1 embedded.numerictype]
                          OutputDataType: 'Same as accumulator'
                    CustomOutputDataType: [1x1 embedded.numerictype]

The specifyall функция устанавливает все свойства типа данных с фиксированной точкой фильтра конечной импульсной характеристики равными 'Custom'.

specifyall(firFilter)
get(firFilter)
ans = struct with fields:
                               Numerator: [1x13 double]
                  ReflectionCoefficients: [0.5000 0.5000]
                       InitialConditions: 0
                         NumeratorSource: 'Property'
            ReflectionCoefficientsSource: 'Property'
                               Structure: 'Direct form'
                   FullPrecisionOverride: 0
                          RoundingMethod: 'Floor'
                          OverflowAction: 'Wrap'
                    CoefficientsDataType: 'Custom'
          ReflectionCoefficientsDataType: 'Custom'
              CustomCoefficientsDataType: [1x1 embedded.numerictype]
    CustomReflectionCoefficientsDataType: [1x1 embedded.numerictype]
                         ProductDataType: 'Custom'
                   CustomProductDataType: [1x1 embedded.numerictype]
                     AccumulatorDataType: 'Custom'
               CustomAccumulatorDataType: [1x1 embedded.numerictype]
                           StateDataType: 'Custom'
                     CustomStateDataType: [1x1 embedded.numerictype]
                          OutputDataType: 'Custom'
                    CustomOutputDataType: [1x1 embedded.numerictype]

Входные параметры

Введенный в R2011a
Для просмотра документации необходимо авторизоваться на сайте