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. |
x = 1.0;
if(x < 2)
warning('x is less than 2');
end;
disp('after x check');