필터 지우기
필터 지우기

how to use dataaspectratio in scatterplot?

조회 수: 3 (최근 30일)
Tomaszzz
Tomaszzz 2022년 12월 15일
댓글: Star Strider 2022년 12월 16일
Hi all,
I have 2D data collected from two diffrent devices that have data of diffrent dimensions as on the picture below.
Knowing the dimensions of both (indicated above), can I change the aspect ratio of data2 to fit in with dimensions of data1 to avoid the below when plotted together? Thanks
scatter(xsensor_sq(:,3),xsensor_sq(:,7)); hold on
scatter(bts_sq(:,3),bts_sq(:,7));
legend ('data1', 'data2')

채택된 답변

Star Strider
Star Strider 2022년 12월 15일
I doubt that daspect is going to have any effect here. The only option is likely to translate one of the plots by subtracting the median in each dimension from the data and then adding whatever offset you want so they are plotted closer to each other.
A more appropriate option (that you appear to have considered already) is to use tiledlayout or something similar to plot them in different axes in the same figure.
  댓글 수: 2
Tomaszzz
Tomaszzz 2022년 12월 16일
Thanks for claryfing!
Star Strider
Star Strider 2022년 12월 16일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by