Let's say I have this list of solutions from a previous computation:
{
{x -> -9.640491283722653` - 5.790987589334252` I},
{x -> -9.640491283722653` + 5.790987589334252` I},
{x -> 0.`- 14.792128645445802` I},
{x -> 0.`+ 14.792128645445802` I},
{x -> 9.640491283722653`- 5.790987589334252` I},
{x -> 9.640491283722653`+ 5.790987589334252` I}
}
Now, how do I extract a list of coordinates from them?
Like
{
{-9.640491283722653`, - 5.790987589334252`},
{-9.640491283722653`, + 5.790987589334252`},
{0.`,- 14.792128645445802`},
{0.`,+ 14.792128645445802},
{9.640491283722653`,- 5.790987589334252`},
{9.640491283722653`,+ 5.790987589334252` }
}

