www.gusucode.com > symbolic 源码程序 matlab案例代码 > symbolic/PlotPolylogarithmExample.m

    %% Plot Polylogarithm
% Plot the polylogarithms of the orders from -3 to 1.
syms x
for n = -3:1
  fplot(polylog(n,x),[-5 1])
  hold on
end
title('Polylogarithm')
hold off