Format colorbar using engineering notation

조회 수: 19 (최근 30일)
Peter
Peter 2019년 11월 19일
답변: Harry Dymond 2020년 7월 3일
How can I set the scale of a color bar to use exponential notation, with all exponents being a multiple of 3?
I know that format shortEng will set the format I want for values printed to the Command Window, but I cannot find anything to format string printed elsewhere using this format.

채택된 답변

Star Strider
Star Strider 2019년 11월 19일
Try this:
engstr = @(x) [x(:).*10.^(-3*floor(log10(abs(x(:)))/3)) 3*floor(log10(abs(x(:)))/3)];
Q1 = logspace(-3, 3, 7);
Result2 = sprintfc('%.4fe%+04d', engstr(Q1))
Alternatively, use compose instead of sprintfc to create the tick labels for the color bar.
Experiment with the format string to get the result you want. This is just an example.
  댓글 수: 2
Peter
Peter 2019년 11월 19일
This is certainly an improvement. Is there a way to pass these formated strings back to the colorbar so that the order of magnitude is displayed once for the entire scale, instead of for each individual tick? I'd like the exponent at the top of the bar, the same as it is before changing the exponents.
Here is how I am using your formating currently:
engstr = @(x) [x(:).*10.^(-3*floor(log10(abs(x(:)))/3)) 3*floor(log10(abs(x(:)))/3)];
defaultTickVals=reshape(get(hColorBar, 'YTick'),[],1)
formatedTickVals=sprintfc('%.4fE%g', engstr(a))
set(hColorBar, 'YTickLabel', cellstr(b))
Star Strider
Star Strider 2019년 11월 19일
I am not certain what you want. With Numeric Ruler Properties an Exponent option exists, however that does not apply to cololrbar objects. When I did that experiment just now:
figure
surf(rand(20))
hcb = colorbar;
hcb.Exponent = 3;
it threw this error:
Unrecognized property 'Exponent' for class 'matlab.graphics.illustration.ColorBar'.
It seems that doing the tick labels individually is the only option.
The only other option I can imagine is to just use the first column that ‘engstr’ returns, and then use a text object or annotation object to display the common exponent. This would likely be fragile code. I have never used text objects or annotation objects with colorbar objects.

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

추가 답변 (1개)

Harry Dymond
Harry Dymond 2020년 7월 3일
A little late for the OP perhaps, but:
  1. My num2eng FEX submission will process colorbars to update the tick labels, and keep them updated if the data in the associated axes change. Just pass the handle of the colorbar to num2eng.
  2. It sounds like, from your comment to Star Strider, that this isn't actually what you want. You want to have a "global" exponent for the colorbar, and for this to be a multiple of three. For this, you need to use the colorbar's hidden .Ruler.Exponent property. e.g.:
barH = colorbar; barH.Ruler.Exponent = 9;

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by