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

    %% Plot Fresnel Cosine Integral Function
% Plot the Fresnel cosine integral function from |x = -5| to |x = 5|.
syms x
fplot(fresnelc(x),[-5,5])
grid on