Method pow(double a, double b)
Return type: double
Member of:
java.lang.Math
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
private final int MAX_FILE_SIZE = (int)(2*(Math.pow(2, 30)));
2
public static final float HALF_STEP = (float)Math.pow(2.0, 1.0 / 12.0);
3
setBounds(i, Math.pow(10, Math.floor(Math.log(Xmi) / Math.log(10))), Math.pow(10,
4
this.base = (int)java.lang.Math.pow(10, scale);
5
double v = Math.rint(tv.get(s)*Math.pow(10.0, precision))/
6
precisionUnit[i] = Math.pow(10, Math.rint(Math.log(Xma - Xmi) / Math.log(10)));
7
while (lines > Math.pow(10, digits) -1) {
8
long factor = Math.round(Math.pow(10, scale));
9
output = (float) Math.pow((input + 0.055) / 1.055, 2.4);
10
Math.pow(2.0, n.getOctave() - Score.WHERE_IS_MIDDLE_OCTAVE));
11
final double factor = Math.pow(10, shift);
12
maxError = Math.pow(10.0, -gd.getNextNumber());
13
int newBase = (int)java.lang.Math.pow(10, newScale);
14
(float)Math.pow(10, Math.log((double)newMaxValue)/log10);
15
double xs = 1.0 / Math.pow(10.0, (double) _xExp);
16
points[ x ].setLocation( x, Math.pow( x, 2 ) );
17
double shift = Math.pow(10, places);
18
sendLimit-=(1+Math.pow((3*warnAmount)/100, 2));
19
b = (long) Math.pow(36, m);
20
double d1=Math.sqrt(Math.pow(tx-fpx,2)+Math.pow(ty-fpy,2));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.