Hello everyone.
My output file from network simulator looks like that:
Time 2, Client 0, Throughput 4.11, Distance 2
Time 3, Client 0, Throughput 4.12, Distance 5
Time 2, Client 1, Throughput 5.12, Distance 2
Time 3, Client 1, Throughput 6.01, Distance 5
Then I create two functions in powershell; first one create objects and the second one iterate (with foreach) output file line by line and watching from objects in first function. Then I use command format table and now output look like this:
Time Client0(Thr) Client2(Thr)
2 4.11
3 4.12
5.12
6.01
Is there any chance to remove that empty squares in tabele. I want ouput like this:
Time Client0(Thr) Client2(Thr)
2 4.11 5.12
3 4.12 6.01
Thank you in advance. |