How do I create a logarithmic colorscale on a scatter3 colorbar in version 2016a?

조회 수: 1 (최근 30일)
x = [4e7, 5e11, 9e17];
y = [5e8, 4e11, 8e17];
z = [3e8, 6e11, 7e17];
average = (x+y+z)/3;
markersize = 99;
C = average;
color = C(:); %Vary color by value of average
scatter3(x,y,z,markersize,color,'Filled')
colorbar
set(gca,'ColorScale','log') %%%%%%This is where the problem lies
caxis([min(x),max(x)]); %set value range of colorbar
I've learned the set(gca,'ColorScale','log') will not work in 2016a; error: There is no ColorScale property on the Axes class. Is there any simple way of dictating the colorbar to be logarithmic? Any help is appreciated.
  댓글 수: 1
jonas
jonas 2018년 5월 21일
Not the most elegant solution but you can always rescale the data and manipulate the ticklabels.

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

채택된 답변

Walter Roberson
Walter Roberson 2018년 5월 21일
In R2016a, you can
cb = colorbar;
cb.DataSpace.YScale = 'log';
However, this will be ignored and it will retain linear.
... and that is the only control you have in R2016a, other than creating your own color bar similar to the way it was done in HG1: create an axes and draw an image (or patch) in it.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by