How can apply scatter or plot functions with two xx and yy axis?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi Everyone,
I am try to use the code below that I got it from : https://www.mathworks.com/help/matlab/creating_plots/graph-with-multiple-x-axes-and-y-axes.html
to apply it with plot OR scatter fuctions but it does't work!
I have histogram in the first plot and Scatter OR plot in the socond.
Thanks in advance
Riyadh
figure
x1 = 0:0.1:40;
y1 = 4.*cos(x1)./(x1+2);
line(x1,y1,'Color','r')
ax1 = gca; % current axes
ax1.XColor = 'r';
ax1.YColor = 'r';
ax1_pos = ax1.Position; % position of first axes
ax2 = axes('Position',ax1_pos,...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none');
x2 = 1:0.2:20;
y2 = x2.^2./x2.^3;
line(x2,y2,'Parent',ax2,'Color','k')
댓글 수: 0
채택된 답변
Arvind Sathyanarayanan
2019년 1월 21일
Riyadh,
댓글 수: 3
Arvind Sathyanarayanan
2019년 1월 22일
Ah, I see what you mean! It looks like you need to set the properties after you use the plot command
close all;
figure;
line(1:10,1:10);
ax1 = gca; % current axes
ax1.XColor = 'r';
ax1.YColor = 'r';
ax1_pos = ax1.Position; % position of first axes
ax2 = axes('XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none');
x=0:0.001:2*pi;
y=sin(x);
plot(x,y,'Parent',ax2,'Color','k');
ax2.XAxisLocation = 'top';
ax2.YAxisLocation = 'right';
ax2.Color = 'none'
Using the above code i got the following result. Please let me know if this works for you
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Animation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!