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
When using comet() to display a comet plot of the data specified in y versus the index of each value (a comet is an animation of a marker (head) and a line (tail) tracing a growing line over the data points) a single-point scatter plot is printed.
t = 0:pi/100:2*pi;
y = sin(t);
x = cos(t);
comet(x,y)
fig2plotly(gcf, 'offline', false);
When using
comet()
to display a comet plot of the data specified in y versus the index of each value (a comet is an animation of a marker (head) and a line (tail) tracing a growing line over the data points) a single-point scatter plot is printed.Expected animation and generated (https://chart-studio.plotly.com/~xarico10/837/#plot) plot:
Grabacion.de.pantalla.2021-08-03.a.la.s.1.48.21.p.m.mov
Examples on using
comet()
can be found on:https://www.mathworks.com/help/matlab/ref/comet.html#responsive_offcanvas
The text was updated successfully, but these errors were encountered: