space125: Almost equally spaced points in logarithmic space

버전 1.0.0.0 (15.8 KB) 작성자: Petr Posik
Generate points ..., 1, 2, 5, 10, 20, ... often useful for log-plots when integer values needed.
다운로드 수: 744
업데이트 날짜: 2010/1/28

라이선스 보기

Suppose we need to generate points equally spaced in logarithmic space. This is often useful with semilogx, semilogy, or loglog plots and can be easily accomplished by the logspace command. Let's generate 10 values between 1 and 1000 equally spaced in the log-space:

>> Dlogspace = logspace(log10(1),log10(1000),10)
Dlogspace =
1.0e+003 *
0.0010 0.0022 0.0046 0.0100 0.0215 0.0464 0.1000 0.2154 0.4642 1.0000

That's great. But sometimes, the D variable must be integer. Well, OK, let's round the values.

>> Drounded = round(Dlogspace)
Drounded =
1 2 5 10 22 46 100 215 464 1000

Again, this is easy. But the values are not easy to remember, since they are different in each decade.

And this is the moment where space125 comes in. It generates values of 1, 2, and 5 multiplied by powers of 10:

>> D = space125(1,1000)
D =
1 2 5 10 20 50 100 200 500 1000

Other examples:
>> D = space125(1,789)
>> D = space125(0.0235, 5.7)

Pros and cons of space125:

The function |space125| generates 3 easy-to-remember integer points in each decade of the scale. You cannot change it (that's the minus), but very often you needn't change it (that's the plus). The values 1, 2, and 5 are based on my personal experience and are sufficient for the majority of my needs.

If the domain should be covered with higher density, I suggest using the
>> round( logspace(log10(xmin),log10(xmax),nPoints) )
command.

Of course, if there is no need for integer values, use the original MATLAB logspace command.

인용 양식

Petr Posik (2024). space125: Almost equally spaced points in logarithmic space (https://www.mathworks.com/matlabcentral/fileexchange/26503-space125-almost-equally-spaced-points-in-logarithmic-space), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Industrial Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0