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 streamline() to draw streamlines from 3-D vector data, a polar plane is being printed on top of the lines.
streamline()
[x,y] = meshgrid(0:0.1:1,0:0.1:1); u = x; v = -y; figure startx = 0.1:0.1:1; starty = ones(size(startx)); streamline(x,y,u,v,startx,starty) fig2plotly(gcf, 'offline', false);
Expected and generated (https://chart-studio.plotly.com/~xarico10/1003/#/) plots:
Examples on using streamline() can be found on: https://www.mathworks.com/help/matlab/ref/streamline.html
The text was updated successfully, but these errors were encountered:
This issue was fixed join to the issue #302. Specifically using this PR #317
Sorry, something went wrong.
@xarico10 please update your local master brach (using git pull) and test this again :)
gilbertogalvis
No branches or pull requests
When using
streamline()
to draw streamlines from 3-D vector data, a polar plane is being printed on top of the lines.Expected and generated (https://chart-studio.plotly.com/~xarico10/1003/#/) plots:

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