Add graph, plot
This commit is contained in:
parent
6e18e03e63
commit
4314729dde
44 changed files with 2307 additions and 0 deletions
19
src/cmd/graph/subr.c
Normal file
19
src/cmd/graph/subr.c
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
#include <stdio.h>
|
||||
#include "iplot.h"
|
||||
void putnum(int num[], double *ff[]){
|
||||
double **fp, *xp;
|
||||
int *np, n,i;
|
||||
np = num;
|
||||
fp = ff;
|
||||
while( (n = *np++)){
|
||||
xp = *fp++;
|
||||
printf("{ ");
|
||||
for(i=0; i<n;i++){
|
||||
printf("%g %g ",*xp, *(xp+1));
|
||||
if(i&1)printf("\n");
|
||||
}
|
||||
printf("}\n");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue