plotly / plotly/plotly_matlab

tiledlayout() not working: Not plotting multiple plots separately on same figure using plot3()

Open
#165 0 comments 0 reactions 1 assignee View on GitHub

@gilbertogalvis is already working on this.

Since Oct 16, 2021.

Dominant language
MATLAB
Stars
413
Forks
166
PR merge metrics
No merged PRs in 30d

Description

Code used:

tiledlayout(1,2)

% Left plot
ax1 = nexttile;
t = 0:pi/20:10*pi;
xt1 = sin(t);
yt1 = cos(t);
plot3(ax1,xt1,yt1,t)
title(ax1,'Helix With 5 Turns')

% Right plot
ax2 = nexttile;
t = 0:pi/20:10*pi;
xt2 = sin(2*t);
yt2 = cos(2*t);
plot3(ax2,xt2,yt2,t, 'Color','red')
title(ax2,'Helix With 10 Turns')

fig2plotly();

Expected and obtained (https://chart-studio.plotly.com/~xarico10/164/helix-with-5-turns/#/) plots:

Captura de Pantalla 2021-07-24 a la(s) 7 13 18 p  m Captura de Pantalla 2021-07-24 a la(s) 7 13 29 p  m

An example on how to do this can be found in:
'Specify Target Axes'
https://www.mathworks.com/help/matlab/ref/plot3.html

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.