#include <math.h>#include <stdio.h>#include <stdlib.h>#include "plgndr.h"Include dependency graph for sphery.c:

Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
|
||||||||||||
|
Definition at line 7 of file sphery.c. References sphericalY().
00008 {
00009 int l = atoi(argv[1]);
00010 int m = atoi(argv[2]);
00011 double x = atof(argv[3]);
00012 printf("%g\n", sphericalY(l, m, x));
00013 }
|
1.2.18