java cartesian to polar
public static double[] pol(double x, double y) {
//return new double[]{Math.sqrt(x * x + y * y), Math.atan2(y, x)}; //red
return new double[]{Math.sqrt(x * x + y * y), (Math.atan2(y, x) * 180) / Math.PI}; //cart
}
java cartesian to polar
public static double[] pol(double x, double y) {
//return new double[]{Math.sqrt(x * x + y * y), Math.atan2(y, x)}; //red
return new double[]{Math.sqrt(x * x + y * y), (Math.atan2(y, x) * 180) / Math.PI}; //cart
}
polar to cartesian java
static double[] cari(double r, double theta) {
theta = (theta / 180) * Math.PI;
return new double[]{r * Math.cos(theta), r * Math.sin(theta)};
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us