for example heres a parallel plot how can i add a sign somewhere on the created figure in the (x,y) points?
A = randn(5);
parallelplot(A);

댓글 수: 1

tried
hold on;
plot (x,y,'kx');
A = randn(5);
parallelplot(A);
but i got an error:
Adding ParallelCoordinatesPlot to axes is not supported. Turn hold off.

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

 채택된 답변

Matt J
Matt J 2022년 4월 19일
편집: Matt J 2022년 4월 19일

1 개 추천

I think you have to embed the point in the parallel data. Parallel plots are not meant to be thought of as Cartesian plots.
x=5;y=-1.5;
A = randn(3,5);
A(end+1,:)=nan; A(end,x)=y; %embed x,y in A
p=parallelplot(A,'groupData',[1,1,1,2],'Color',{'blue','red'});
p.MarkerStyle={'none','o'};
p.MarkerSize(end)=10;

추가 답변 (0개)

카테고리

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

제품

질문:

2022년 4월 19일

편집:

2022년 4월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by