We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
For two sets of parametric lines, like:
t = 0:pi/500:pi; xt1 = sin(t).cos(10t); yt1 = sin(t).sin(10t); zt1 = cos(t);
xt2 = sin(t).cos(12t); yt2 = sin(t).sin(12t); zt2 = cos(t);
plot3(xt1,yt1,zt1,xt2,yt2,zt2)
fig2plotly();
We getting just polar coordinates axis:
And message: Index exceeds the number of array elements (1). We had trouble parsing the line object. This trace might not render properly.
More about plot3() https://www.mathworks.com/help/matlab/ref/plot3.html
The text was updated successfully, but these errors were encountered:
fix issue #319
0043400
With the PR #324 this issue is fixed
Sorry, something went wrong.
gilbertogalvis
No branches or pull requests
For two sets of parametric lines, like:
t = 0:pi/500:pi;
xt1 = sin(t).cos(10t);
yt1 = sin(t).sin(10t);
zt1 = cos(t);
xt2 = sin(t).cos(12t);
yt2 = sin(t).sin(12t);
zt2 = cos(t);
plot3(xt1,yt1,zt1,xt2,yt2,zt2)
fig2plotly();
We getting just polar coordinates axis:

And message:
Index exceeds the number of array elements (1).
We had trouble parsing the line object.
This trace might not render properly.
More about plot3()
https://www.mathworks.com/help/matlab/ref/plot3.html
The text was updated successfully, but these errors were encountered: