-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionGraph.java
More file actions
35 lines (30 loc) · 1.11 KB
/
FunctionGraph.java
File metadata and controls
35 lines (30 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*************************************************************************
* Compilation: javac FunctionGraph.java
* Execution: java FunctionGraph
* Dependencies: StdDraw.java
*
* Plots the function y = sin(4x) + sin(20x) between x = 0 and x = pi
* by drawing N line segments.
*
*************************************************************************/
public class FunctionGraph {
public static void main(String[] args) {
// number of line segments to plot
int N = Integer.parseInt(args[0]);
// the function y = sin(4x) + sin(20x), sampled at N points
// between x = 0 and x = pi
double[] x = new double[N+1];
double[] y = new double[N+1];
for (int i = 0; i <= N; i++) {
x[i] = Math.PI * i / N;
y[i] = Math.sin(4*x[i]) + Math.sin(20*x[i]);
}
// rescale the coordinate system
StdDraw.setXscale(0, Math.PI);
StdDraw.setYscale(-2.0, +2.0);
// plot the approximation to the function
for (int i = 0; i < N; i++) {
StdDraw.line(x[i], y[i], x[i+1], y[i+1]);
}
}
}