Owning Class: support
Requires: MathScript RT Module
warning(a)
Generates a warning message without stopping execution.
| Name | Description |
|---|---|
| a | Specifies the warning message. a is a string. |
The following table lists the support characteristics of this function.
| Supported in the LabVIEW Run-Time Engine | Yes |
| Supported on RT targets | Yes |
| Suitable for bounded execution times on RT | No (affects entire script) |
x = 1.0;
if(x < 2)
warning('x is less than 2');
end;
disp('after x check');