File:MATLAB surf sinc3D.svg

Summary

Description

A three-dimensional surface plot of the unnormalized sinc function  precisely,

Date
Source Own work
Author DmitTrix
Other versions
SVG development
InfoField
Source code
InfoField

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);
surf(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

Licensing

Public domain 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.
Category:Self-published work#MATLAB%20surf%20sinc3D.svgCategory:PD-self#MATLAB%20surf%20sinc3D.svg Category:Surface plots Category:Images with Matlab source code Category:Sinc function
Category:Images with Matlab source code Category:PD-self Category:Self-published work Category:Sinc function Category:Surface plots Category:Valid SVG created with MATLAB code