Problem 895. Generate N equally spaced intervals between -L and L
Given N and L, return a list of numbers (in ascending order) that divides the interval [-L L] into N equal-length segments.
For example, if L = 3 and N = 2
y = [ -3 0 3 ]
Solution Stats
Problem Comments
-
4 Comments
Show
1 older comment
Jiawei Gong
on 9 Mar 2020
I have the same question. Would anyone kindly help us? Thank you.
Israt Jahan
on 27 Mar 2020
I am also wondering why linspace(-L,L,N+1) is not working. It passes the last test suite, but fails the first two.
Lee Chih Jung
on 12 Oct 2020
It's coz the test suite only accounts for whole numbers, so you're going to have to do something else to the numbers within the vector generated.
Solution Comments
Show commentsProblem Recent Solvers880
Suggested Problems
-
Program an exclusive OR operation with logical operators
725 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1199 Solvers
-
Put two time series onto the same time basis
329 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
832 Solvers
-
Find out sum and carry of Binary adder
1535 Solvers
More from this Author56
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!