"logarithmicTrend"
Sets the representation of the trend to logarithmic.
Synopsis
setValue(string shape, "logarithmicTrend", bool mode);
getValue(string shape, "logarithmicTrend", bool &mode);
shape.logarithmicTrend(bool mode);
Parameters
| Parameter | Description |
|---|---|
| shape | Name of the object |
| mpde |
TRUE = logarithmic representation FALSE = Linear representation |
Description
Sets the representation of the trend to logarithmic.
Example
Sets the representation of the trend to logarithmic.
main()
{
TREND1.logarithmicTrend(TRUE);
bool mod;
getValue("TREND1","logarithmicTrend",mod);
DebugN("Mode", mod);
}
Assignment
Trend