File:Sine cosine integral.svg
Summary
| Description |
English: This is a plot of sine integral and cosine integral functions (for ).
The plot was produced by the following MATLAB code: x = 0:0.01*pi:8*pi;
Si = sinint(x); Ci = cosint(x); % requires Symbolix Math Toolbox
plot(x,Si, x,Ci);
margin = 0.3;
axis([min(x) max(x) min([min(Si),min(Ci)]) max([max(Si),max(Ci)]) + margin])
title('{\bfSine integral} and {\bfcosine integral}');
legend('Si({\itx})', 'Ci({\itx})', 'Location','SouthEast')
xlabel('{\it{\bfx}}')
|
| Date | |
| Source | Own work |
| Author | DmitTrix |
Licensing
| I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. |