Dear All,
Would you please support me to plot Staked 3D line chart like below in mATLAB?
Regards

 채택된 답변

Star Strider
Star Strider 2023년 8월 3일
편집: Star Strider 2023년 8월 3일

0 개 추천

Perhaps something like this —
x = linspace(-40, 0, 20).';
zv = linspace(2, 4.5, 4);
z = repmat(zv,1,3).*exp(0.1*x) + rand(numel(x),12)/2.5;
xm = repmat(x,1,4);
ym = repmat(ones(size(x)),1,4);
zm = reshape(z,20,4,[]);
figure
hold on
for k = 1:size(zm,3)
plot3(xm,ym*(k-1),zm(:,:,k), 'o-k')
end
hold off
grid on
view(220,30)
yticks([0 1 2])
yticklabels({'One','Two','Three'})
xlabel('Temp °C')
ylabel('Refrigirant')
zlabel('CCP')
EDIT — (3 Aug 2023 at 11:03)
Tweaked code to give a more visually pleasing result. Otherwise unchanged
.

댓글 수: 2

Hussein
Hussein 2023년 8월 3일
편집: Hussein 2023년 8월 3일
Many Thanks, I'll try it.
Star Strider
Star Strider 2023년 8월 3일
My pleasure!
It would be easier with your data. You will need to change the sizes of ‘xm’ and ‘ym’ to have the same dimensions as your data (‘zm’), however that should not be difficult.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Axes Appearance에 대해 자세히 알아보기

제품

릴리스

R2022b

질문:

2023년 8월 3일

댓글:

2023년 8월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by