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 view() to rotate the polar chart a certain amount of degrees, nothing happens.
view()
For example:
th = linspace(0,3*pi/2,10); r = linspace(5,20,10); [u,v] = pol2cart(th,r); compass(u,v)
Plots the following:
However, when using view(-90,90) the chart should be rotated:
view(-90,90)
th = linspace(0,3*pi/2,10); r = linspace(5,20,10); [u,v] = pol2cart(th,r); compass(u,v) view(-90,90) fig2plotly(gcf, 'offline', false);
Expected and generated (https://chart-studio.plotly.com/~xarico10/651/#/) plots:
As seen, the generated plot doesn't executes such rotation and keeps plotting the arrows in the original directions (first figure).
Examples on using view() can be found on: https://www.mathworks.com/help/matlab/ref/compass.html#mw_5ec749c2-0e3c-4829-bb54-68b0122905f2
The text was updated successfully, but these errors were encountered:
fix issue #245
6cd8dae
Merge pull request #256 from plotly/issue245
5cf6d96
No branches or pull requests
When using
view()
to rotate the polar chart a certain amount of degrees, nothing happens.For example:
Plots the following:
However, when using
view(-90,90)
the chart should be rotated:Expected and generated (https://chart-studio.plotly.com/~xarico10/651/#/) plots:
As seen, the generated plot doesn't executes such rotation and keeps plotting the arrows in the original directions (first figure).
Examples on using
view()
can be found on:https://www.mathworks.com/help/matlab/ref/compass.html#mw_5ec749c2-0e3c-4829-bb54-68b0122905f2
The text was updated successfully, but these errors were encountered: