I run a code to NSolve long polynomial 1+a+x^2+b*x^4...+x^10for a particular input parameter with range of values say {a,0,7,1}. The solution give me a 'Table' of complex roots values with each row having different length for example:
{{ 1, 2, 3, 4, 5}, { 1, 4, 6, 8, 10, 12, 14}, { 4, 6, 8, 10, 14, 16, 18, 20}, { 4, 3, 2, 1, 0, 1+i, 1+2*i, -1, -2, -3}, { 4, 6, 8, 10, 14, 16, 18, 20}, { 1, 4, 6, 8, 10, 12, 14}, { 1, 2, 3, 4, 5}} So each row represents the value of a and each column represents the value of x solution. Therefore for particular value of a=1 , the NSolve gives me 7 solutions or 7 roots. Therefore each a has a solution of different length. I have to plot column wise or each column in complex plane for range of a. The problem I have is that I cannot do PadRight with zeros. I think I have to leave null space as null which means that some columns do not have data points. How do I plot this table of complex values with unequal length in columns or rows in 2D or 3D without padding with zeros or any other value?
Thanks in advance,
WolfMath Ver.9

