필터 지우기
필터 지우기

How to remove specific box lines in 3d plot?

조회 수: 4 (최근 30일)
Aim Newb
Aim Newb 2023년 5월 13일
편집: chicken vector 2023년 5월 13일
Hello everyone,
I would like to remove only specific box lines. Is there a way around it?
Default:
How I would prefer it:
Thanks for your time.

답변 (1개)

chicken vector
chicken vector 2023년 5월 13일
편집: chicken vector 2023년 5월 13일
Bit artificious but does the trick:
z = 0:0.05:10*pi;
x = cos(z);
y = sin(z);
figure;
hold all;
plot3(x,y,z)
% Remove box lines:
box off;
% Plot back lines:
ax = gca;
plot(ax.XLim,repmat(ax.YLim(1),1,2),'k');
plot(repmat(ax.XLim(1),1,2),ax.YLim,'k');
view([1 1 1]);

카테고리

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