plot2data.c
来自「speech signal process tools」· C语言 代码 · 共 53 行
C
53 行
/*----------------------------------------------------------------------+| || This material contains proprietary software of Entropic Speech, || Inc. Any reproduction, distribution, or publication without the || prior written permission of Entropic Speech, Inc. is strictly || prohibited. Any public distribution of copies of this work || authorized in writing by Entropic Speech, Inc. must bear the || notice || || "Copyright (c) 1986, 1987 Entropic Speech, Inc. All rights reserved." || |+-----------------------------------------------------------------------+| || plot2data -- plot data from 2 floating-point arrays || || Rodney Johnson, Entropic Speech, Inc.; adapted from program || plot_data by Shankar Narayan. || || Module: plot2data.c || || Given arrays of x- and y-coordinates, plot2data writes plot || commands in ``Stanford'' plotas input format to plot the line || connecting the points with the given coordinates. The argument || len is the number of points to plot; xmin ... ymax are the data || coordinates that are to correspond to the edges of the plot. || |+----------------------------------------------------------------------*/#ifdef SCCS static char *sccs_id = "@(#)plot2data.c 3.1 10/20/87 ESI";#endif#define Printf (void) printfplot2data(xdata, ydata, len, color, xmin, xmax, ymin, ymax) int len, color; float xdata[], ydata[]; double xmin, xmax, ymin, ymax;{ int ix, iy, i; Printf("c %d\n", color); for (i = 0; i < len; i++) { ix = 0.5 + 500 + 5000*(xdata[i] - xmin)/(xmax - xmin); iy = 0.5 + 3000 - 2500*(ydata[i] - ymin)/(ymax - ymin); if (i == 0) Printf("m %d %d\n", iy, ix); else Printf("d %d %d\n", iy, ix); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?