Problem 45446. Create logarithmically spaced values (★)
Given three numbers a,b,n with b>a, create a vector y with n logarithmic spaced values between 10^a and 10^b. Thus, if a = -2, b = 3 and n = 6, then
y = [10^-2 10^-1 10^0 10^1 10^2 10^3] = [0.01 0.1 1.0 10.0 100.0 1000.0]
Solution Stats
Solution Comments
Show commentsGroup

Getting started with the MATLAB environment
- 12 Problems
- 16 Finishers
- Times 2 - START HERE
- Add two numbers
- Make the vector [1 2 3 4 5 6 7 8 9 10]
- Create a vector of the first n natural numbers (★)
- Create a vector of the first n odd numbers (★)
- PEMDAS test (★★)
- Generate n equally spaced "intervals" between -x and x (★)
- Create logarithmically spaced values (★)
- Element-wise vector product (★)
- Vector raised to a power, element-wise (★)
- Magnitude of a vector (★★★)
- Sum of elements of a vector (★★★)
Problem Recent Solvers114
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!