gen_line

Files: ftbl.h, ftbl.c

A series of line segments

Functions

sp_gen_line(sp_data *sp, sp_ftbl *ft , char *argstring)

Parameters

argstring: A list of ordered xy pairs. X expects whole number integers, as they correlate to index positions in the ftable.
(Recommended value: 0 0 4096 1)

Example Code

#include <stdio.h>
#include "soundpipe.h"

int main() {
    sp_data *sp;
    sp_create(&sp);
    sp_ftbl *ft;
    sp_ftbl_create(sp, &ft, 4096);
    sp_gen_line(sp, ft, "0 -1 2048 1 4096 -1");
    int i;
    FILE *fp= fopen("plot.dat", "w");
    for(i = 0; i < ft->size; i++) {
        fprintf(fp, "%d %g\n", i, ft->tbl[i]);
    }
    printf("%d plot points written to plot.dat. Run write_plot.sh to see the result.\n", ft->size); 
    fclose(fp);
    sp_ftbl_destroy(&ft);
    sp_destroy(&sp);
    return 0;
}