Plot question as values for both axis are different

조회 수: 1 (최근 30일)
Viswajit Talluru
Viswajit Talluru 2023년 1월 16일
댓글: the cyclist 2023년 1월 16일
x axis from this picture should be on the y axis on the new graph
  댓글 수: 2
Viswajit Talluru
Viswajit Talluru 2023년 1월 16일
These are the two plots I would like to plot both x axis onto one graph. as both the bpoints do no math how do I plot?

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
the cyclist 2023년 1월 16일
Do you mean you just want to place two plot on the same axes? Then you use hold
figure
hold on
plot([2 3 5],[7 11 13])
plot([2 3 5],[29 31 37])
If you need different y axes for the two plots, you can use yyaxis.
  댓글 수: 2
Viswajit Talluru
Viswajit Talluru 2023년 1월 16일
편집: Viswajit Talluru 2023년 1월 16일
I have two plots From figure 1 and 2. Figure 1 x-axis should be y-axis on a new plot and Figure 2 x-axis be the x-axis on the same new plot. Both the data is of different set of values so how do I plot?
the cyclist
the cyclist 2023년 1월 16일
I really don't understand what you mean. Sorry.
Here are three things you can do, that might help:
  • Upload your data. You can use the paper clip icon in the INSERT section of the toolbar.
  • Making a drawing by hand of what you want the plot to look, take a picture, and upload the image.
  • Go to the MATLAB Plot Gallery, and see if any of the plots there are similar to the style of plot you want to make. You can get code there and adapt it to what you need.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by