Home > Community > General > Orbit diagram > Reply To: Orbit diagram

#20721

Hello

for this purpose you need to create a polar diagram in FlexPro, see attachment for an example:

[attachment file=”Polardiagram.png”]

Note: for converting X-Y-data into polar data, one can use the following FPScript code:

Dim complex = X + 1i*Y
Dim r = Absolute(complex)
Dim angle = PhaseUnwrap(Phase(complex))
Signal(r, angle)