02-03-2017 03:49 PM
Hi, I have an array that outputs the data in the form of "10+10i" where the 10 represent the x-axis and the 10i represents the y-axis. I want to get two independent arrays for x-axis and y-axis(without the "i" ), is that possible? thanks for your help.
A.
Solved! Go to Solution.
02-03-2017 04:01 PM
Numeric >> Complex palette. Complex to Re/Im function.
What are you doing with this data. Because you can feed a complex number directly to an XY graph.
02-03-2017 04:10 PM
Trying to understand...
Do you have a complex array of type X + Y*i (X being the real part and Y the imaginary part) and do you want to split it you to two independant real arrays ( X and Y)?
If that's the case just use the Complex to Re/Im primitive.
If not please explain in more details what you are trying to achieve.
02-03-2017 04:53 PM
Thanks guys that solved my problem .Cheers
A.