Main Content

La traducción de esta página aún no se ha actualizado a la versión más reciente. Haga clic aquí para ver la última versión en inglés.

Punto fijo

Represente las señales y los valores de los parámetros con números de punto fijo para mejorar el rendimiento del código generado

En el hardware digital, los números se representan como tipos de datos de punto fijo o de punto flotante. En ambos tipos de datos, el tamaño de las palabras se fija en un número determinado de bits. Sin embargo, el rango dinámico de los valores de punto fijo es mucho menor que el de los valores de punto flotante con tamaños de palabra equivalentes. Mientras que los procesadores de punto flotante pueden simplificar en gran medida la implementación en tiempo real de un sistema, y aproximar eficazmente los números del mundo real, los procesadores de punto fijo presentan otras numerosas ventajas. Los procesadores de punto fijo suelen ser más pequeños y consumen menos energía. También requieren menos memoria y menos tiempo de procesador para funcionar.

Para simular un modelo que utiliza números de punto fijo, debe instalar el producto Fixed-Point Designer™. Sin embargo, no es necesario el producto Fixed-Point Designer para editar un modelo que contenga bloques de punto fijo, ni para especificar tipos de datos de punto fijo.

Funciones

fixdtCreate Simulink.NumericType object describing a fixed-point or floating-point data type
fixpt_look1_func_approxOptimize fixed-point approximation of nonlinear function by interpolating lookup table data points
fixpt_evenspace_cleanupModify breakpoints of lookup table to have even spacing
fixpt_look1_func_plotPlot fixed-point approximation function for lookup table
fixpt_set_allSet property for each fixed-point block in subsystem
fixptbestexpExponent that gives best precision for fixed-point representation of value
fixptbestprecDetermine maximum precision available for fixed-point representation of value

Temas

  • Specify Fixed-Point Data Types

    If you do not have Fixed-Point Designer, you can still inspect and use fixed-point models that others share with you.

  • Specify Data Types Using Data Type Assistant

    Interactively apply data types, such as integer, fixed-point, and enumerated types, to data items in a model.

  • Share Fixed-Point Models

    Inspect and use an existing fixed-point model when you do not have Fixed-Point Designer.

  • Control Fixed-Point Instrumentation and Data Type Override

    If you do not have Fixed-Point Designer, you can work with a model containing Simulink® blocks with fixed-point settings by turning off fixed-point instrumentation and setting data type override to scaled doubles.

  • Fixed-Point Numbers

    In computer memory, an item of fixed-point data is stored as an integer. To interpret the data as a real-world number, the computer applies a mathematical scaling to the integer. The scaling is fixed, which means it cannot change during execution.

  • Benefits of Using Fixed-Point Hardware

    Fixed-point designs can perform faster and consume fewer computing resources than floating-point designs.

  • Scaling, Precision, and Range

    Examine the interaction between the scaling that you apply to fixed-point data, the precision with which the data can represent real-world values, and the range of real-world values that the data can represent.

  • Fixed-Point Data in MATLAB and Simulink

    Apply fixed-point data types to data in Simulink models and to data in MATLAB® code.

Información relacionada