“polar zu kartesischer Java” Code-Antworten

Java -kartesianer zu 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
}
PRO_GrAMmER (IA Fahim)

polar zu kartesischer Java

static double[] cari(double r, double theta) {
    theta = (theta / 180) * Math.PI;
    return new double[]{r * Math.cos(theta), r * Math.sin(theta)};
}
PRO_GrAMmER (IA Fahim)

Ähnliche Antworten wie “polar zu kartesischer Java”

Fragen ähnlich wie “polar zu kartesischer Java”

Weitere verwandte Antworten zu “polar zu kartesischer Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen