# include # include # include # include # include "dislin_d.h" int main ( int argc, char *argv[] ); void timestamp ( ); /******************************************************************************/ int main ( int argc, char *argv[] ) /******************************************************************************/ /* Purpose: QUICKPLOT_SURFACE demonstrates the DISLIN quickplot command QPLSUR. Licensing: This code is distributed under the MIT license. Modified: 28 February 2014 Author: This C version by John Burkardt. Reference: Helmut Michels, The Data Plotting Software DISLIN - version 10.4, Shaker Media GmbH, January 2010, ISBN13: 978-3-86858-517-9. */ { int i; int j; int m = 100; int n = 100; double pi = 3.1415926; double x; double y; double *zmat; timestamp ( ); printf ( "\n" ); printf ( "QUICKPLOT_SURFACE:\n" ); printf ( " C version:\n" ); printf ( " Demonstrate the DISLIN 'quickplot' command QPLSUR\n" ); printf ( " to plot a surface Z(X,Y) stored as a matrix.\n" ); /* Set up the X and Y data for the plot. */ zmat = ( double * ) malloc ( m * n * sizeof ( double ) ); for ( i = 0; i < m; i++ ) { x = 2.0 * pi * ( double ) ( i ) / ( double ) ( m - 1 ); for ( j = 0; j < n; j++ ) { y = 2.0 * pi * ( double ) ( j ) / ( double ) ( n - 1 ); zmat[i+j*m] = 2.0 * sin ( x ) * sin ( y ); } } /* Specify the format of the output file. */ metafl ( "png" ); /* Specify that if a file already exists of the given name, the new data should overwrite the old. */ filmod ( "delete" ); /* Specify the name of the output graphics file. */ setfil ( "quickplot_surface.png" ); /* Choose the page size and orientation. */ setpag ( "usal" ); /* For PNG output, reverse the default black background to white. */ scrmod ( "reverse" ); /* Open DISLIN. */ disini ( ); /* Label the axes and the plot. */ name ( "<-- X -->", "X" ); name ( "<-- Y -->", "Y" ); titlin ( "Quick plot by QPLSUR", 2 ); /* Draw the curve. */ qplsur ( zmat, m, n ); /* Close DISLIN. */ disfin ( ); /* Free memory. */ free ( zmat ); /* Terminate. */ printf ( "\n" ); printf ( "QUICKPLOT_SURFACE:\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; } /******************************************************************************/ void timestamp ( ) /******************************************************************************/ /* Purpose: TIMESTAMP prints the current YMDHMS date as a time stamp. Example: 31 May 2001 09:45:54 AM Licensing: This code is distributed under the MIT license. Modified: 24 September 2003 Author: John Burkardt Parameters: None */ { # define TIME_SIZE 40 static char time_buffer[TIME_SIZE]; const struct tm *tm; time_t now; now = time ( NULL ); tm = localtime ( &now ); strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); fprintf ( stdout, "%s\n", time_buffer ); return; # undef TIME_SIZE }