File:MATLAB mesh sinc3D.svg
| Description |
A three-dimentional wireframe plot of the unnormalized sinc function — precisely, |
||
| Date | |||
| Source | Own work | ||
| Author | DmitTrix | ||
| Permission (Reusing this file) |
|
||
| Other versions | File:Matlabsinrr.png | ||
| SVG development | |||
| Source code | MATLAB code[X,Y] = meshgrid(-10:0.25:10,-10:0.25:10);
f = sinc(sqrt((X/pi).^2+(Y/pi).^2));
h = figure(1);
mesh(X,Y,f);
axis([-10 10 -10 10 -0.3 1])
xlabel('{\bfx}')
ylabel('{\bfy}')
zlabel('{\bfsinc} ({\bfR})')
hidden off
plot2svg('sinc3D.svg',h) % utilizes the SVG exporting script (by Juerg Schwizer)
% available from MATLAB Central File Exchange
|