Problem with PanelArray() class show() function
Problem: In the beginner tutorial part 3: advanced link level simulations, when executing the command "UT_ARRAY.show()" the following error occurs: "Type Error: float() argument must be a string or a number, not 'MarkStyle'".
Possible solution: The error happens because in the show() function of the PanelArray() class, marker_vert and marker_horz are objects and the argument 'marker' must be a string. The possible solution is to use the get_marker() function which returns a string. This way: marker = marker_vert.get_marker() marker = marker_horz.get_marker()
Best regards, Pedro
Hi Pedro,
Could you please provide some information about your system, i.e., OS, Python Version, TF Version, etc.? I cannot reproduce this error.
Thanks
I ran the tutorial using Google Colab.
"Python 3 Google Compute Engine (GPU) Backend"
Ok. I can reproduce the error in Colab. Will be fixed in the next release. Thanks.
You're welcome.