| Contents | Index |
Math Operations
The Weighted Sample Time Math block adds, subtracts, multiplies, or divides its input signal, u, by a weighted sample time, Ts. If the input signal is continuous, Ts is the sample time of the Simulink model. Otherwise, Ts is the sample time of the discrete input signal.
You specify the math operation with the Operation parameter. Additionally, you can specify to use only the weight with either the sample time or its inverse.
Enter the weighting factor in the Weight value parameter. If the weight, w, is 1, that value does not appear in the equation on the block icon.
The block computes its output using the precedence rules for MATLAB operators (see Operator Precedence). For example, if the Operation parameter specifies +, the block calculates output using this equation:
u + (Ts * w)
However, if the Operation parameter specifies /, the block calculates output using this equation:
(u / Ts) / w
The Weighted Sample Time Math block accepts signals of the following data types:
Floating point
Built-in integer
Fixed point
Boolean
For more information, see Data Types Supported by Simulink in the Simulink documentation.
The Main pane of the Weighted Sample Time Math block dialog box appears as follows:

Specify operation to use: +, -, *, /, Ts Only, or 1/Ts Only.
Enter the weight of sample time.
Select one of two modes: online calculations or offline scaling adjustment. This parameter is visible only when you set Operation to * or /.
| Result of (Ts * w) | Output Data Type of Two Modes | Block Execution |
|---|---|---|
| A power of 2, or an integer value | The same, when Output data type is Inherit: Inherit via internal rule | Equally efficient in both modes |
| Not power of 2 and not an integer value | Different | More efficient for the offline scaling mode |
The Signal Attributes pane of the Weighted Sample Time Math block dialog box appears as follows:

Tip The Saturate on integer overflow parameter is visible only if:
|
Specify whether the block inherits the output data type by an internal rule or back propagation.
Specify the rounding mode for fixed-point operations. For more information, see Rounding in the Simulink Fixed Point User's Guide.
| Action | Reasons for Taking This Action | What Happens for Overflows | Example |
|---|---|---|---|
Select this check box. | Your model has possible overflow and you want explicit saturation protection in the generated code. | Overflows saturate to either the minimum or maximum value that the data type can represent. | An overflow associated with a signed 8-bit integer can saturate to -128 or 127. |
Do not select this check box. | You want to optimize efficiency of your generated code. You want to avoid overspecifying how a block handles out-of-range signals. For more information, see Checking for Signal Range Errors. | Overflows wrap to the appropriate value that is representable by the data type. | The number 130 does not fit in a signed 8-bit integer and wraps to -126. |
When you select this check box, saturation applies to every internal operation on the block, not just the output or result. In general, the code generation process can detect when overflow is not possible. In this case, the code generator does not produce saturation code.
Direct Feedthrough | For all math operations except Ts and 1/Ts |
Scalar Expansion | No, the weight is always a scalar |
Zero-Crossing Detection | No |

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |