You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As some people have commented, the plots can become quite slow for long sequences.
I enabled a few new options in plot_seq:
gl=false: That changes the scatter plot backend, making it faster, but you will not be able to output an svg with vector graphics, the lines will be rasterized (this one I also added to plot_signal). Moreover, when slider=true the lines using the scattergl backend will dissapear. The phantom plot uses it as default (scatter3d).
max_rf_samples=100: This already existed, but now it is 100 by default
false: Shows adc points as markers
I also optimized get_samples so there are fewer samples to plot.
The same can be applied to the base plotting function and the default values in the UI
What happened?
As some people have commented, the plots can become quite slow for long sequences.
I enabled a few new options in plot_seq:
gl=false
: That changes the scatter plot backend, making it faster, but you will not be able to output an svg with vector graphics, the lines will be rasterized (this one I also added toplot_signal
). Moreover, whenslider=true
the lines using thescattergl
backend will dissapear. The phantom plot uses it as default (scatter3d
).max_rf_samples=100
: This already existed, but now it is 100 by defaultI also optimized
get_samples
so there are fewer samples to plot.The same can be applied to the base plotting function and the default values in the UI
Environment
The text was updated successfully, but these errors were encountered: