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
Solution Comments
Show comments
Loading...
Problem Recent Solvers943
Suggested Problems
-
Back to basics 23 - Triangular matrix
1121 Solvers
-
Are all the three given point in the same line?
603 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1263 Solvers
-
Find last zero for each column
696 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 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!
y = linspace(-L,L,(N+1))
why this is not working even though it meets all the requirements in the assert?
I have the same question. Would anyone kindly help us? Thank you.
I am also wondering why linspace(-L,L,N+1) is not working. It passes the last test suite, but fails the first two.
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.