DADiSP Worksheet Functions > Function Categories > Plot Attributes > LOGLOG

 

LOGLOG

Purpose:

Turns the log scales on/off for the X and Y axis of one or more Windows.

Syntax:

LOGLOG(W1, W2, ..., WN, mode)

WN

-

Optional. Zero or more windows. Defaults to the current window.

mode

-

Optional. An integer, the X and Y log scale mode:

0:

Linear axis

1:

Log X and Y axis, 10N values (default)

2:

Log X and Y axis, linear values

Returns:

Nothing, the axes are set or unset to log X and log Y scales.

Example:

W1: grand(1000, 1);loglog

 

The series in W1 is displayed with X log and Y log scales.

Example:

W1: grand(100, 1)

W2: integ(W1)

W3: integ(W2)

W4: integ(W3)

 

loglog(W1..W4)

 

The series in W1 through W4 are displayed with X log and Y log scales.

Example:

W1: grand(100, 1)

W2: integ(W1)

W3: integ(W2)

W4: integ(W3)

 

loglog(W1..W4, 2)

 

Same as above except the X and Y axis values are displayed in linear form (1, 10, 100, ...).

Example:

loglog(W1..W4, 0)

 

Resets the X and Y scales to linear for the series in W1 through W4.

Remarks:

LOGLOG uses SETXLOG and SETYLOG to set the X axis and Y axis to log scales. By default, the log tic values are displayed in 10N form.

See Also:

SEMILOGX

SEMILOGY

SETXLOG

SETYLOG

XSUBTIC

YSUBTIC