Name

loglog — logarithmic scaled plot

Calling Sequence

hdl = loglog(X,Y)

Parameters

X

1 by n or m by n matrix

Y

1 by n or m by n matrix

hdl

Handle of the created Polyline entity

Description

LOGLOG(...) is the same as PLOT(...), except a logarithmic (base 10) scale is used for the X-axis and the Y-axis.

Examples

w=logspace(-2,2,200);
s=%i*w;
g=1../(s.^2+0.01*s+1);
loglog(w,abs(g));

See Also

semilogx , semilogy

Authors

Stéphane Mottelet