When brushing 3-d scatter, why does the marker not change?

조회 수: 1 (최근 30일)
zitongz
zitongz 2016년 6월 2일
댓글: zitongz 2016년 6월 2일
Dear all,
I might have missed some old threads but I'm rather stuck with this issue now. I'm accessing brushed data in a GUI with a 2-d scatter and a 3-d scatter. I can get the brushed data and play with them. But the brushed data points in the 3-d scatter does not change their marker color whereas brushed points in the 2-d scatter will.
I've tried some simply code (see below) and it's the same: markers change colour in 2-d scatter but not 3-d. I wonder if this is some inherent feature of brush(). Is there any way that I can change this behaviour?
figure();
scatter(rand([10, 1]), rand([10, 1]));
brush on;
figure();
scatter3(rand([10, 1]), rand([10, 1]), rand([10, 1]));
brush on;
Many thanks!
Zitong

채택된 답변

Duncan Po
Duncan Po 2016년 6월 2일
Are you using R2014b? There is a bug in that version. Good news is it is fixed in 15a, so if you update, brushing on scatter3 will work again.
  댓글 수: 1
zitongz
zitongz 2016년 6월 2일
Hi Duncan,
Thanks a lot for the answer. I've tried it on a colleague's computer with 2016 and it's working fine.
Cheers,
Zitong

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by