We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using stem() to plot a discrete data sequence, the x-axis line on 0 is not being plotted.
stem()
Y = linspace(-2*pi,2*pi,50); stem(Y) fig2plotly(gcf, 'offline', false);
Expected and generated (https://chart-studio.plotly.com/~xarico10/745/#/) plots:
Examples on using stem() can be found on: https://www.mathworks.com/help/matlab/ref/stem.html#responsive_offcanvas
The text was updated successfully, but these errors were encountered:
By making the following changes I am able to get x-axis for the graph
CODE x = 0:50; y = linspace(-8,6,length(x));
%Plotting stem(x,y) fig2plotly()
OUTPUT
Sorry, something went wrong.
uzairmughal110
No branches or pull requests
When using
stem()
to plot a discrete data sequence, the x-axis line on 0 is not being plotted.Expected and generated (https://chart-studio.plotly.com/~xarico10/745/#/) plots:


Examples on using
stem()
can be found on:https://www.mathworks.com/help/matlab/ref/stem.html#responsive_offcanvas
The text was updated successfully, but these errors were encountered: