logarithmic scaled plot
hdl = loglog(X,Y)
1 by n or m by n matrix
1 by n or m by n matrix
Handle of the created Polyline entity
LOGLOG(...) is the same as PLOT(...), except a logarithmic (base 10) scale is used for the X-axis and the Y-axis.
w=logspace(-2,2,512); s=%i*w;g=[]; for alpha=logspace(-2,1,5); g=[g;(1)./(s.^2+alpha*s+1)]; end loglog(w,abs(g)); | ![]() | ![]() |