File:MATLAB surf sinc3D.svg

Uploaded by DmitTrix
Upload date 2008-05-24T20:33:43Z
MIME type image/svg+xml
Dimensions 512 × 384 px
File size 1.3 MB

Summary

Description

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

10x1010y10z=sinc(x2+y2)
Date
Source Own work
Author DmitTrix
Other versions
SVG development
InfoField
 The SVG code is valid.
 This diagram was created with MATLAB.
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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

24 May 2008

image/svg+xml

1,369,704 byte

71ff4966ae409c1526d05d5bc6c21dc79189b730

Category:Images with MATLAB source code Category:PD-self Category:SVG surface plots Category:Self-published work Category:Sinc function Category:Valid SVG created with MATLAB code