Problem 895. Generate N equally spaced intervals between -L and L
Solution Stats
Problem Comments
-
4 Comments
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.
Solution Comments
Show commentsProblem Recent Solvers938
Suggested Problems
-
3426 Solvers
-
Omit columns averages from a matrix
616 Solvers
-
Are all the three given point in the same line?
598 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
445 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
881 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!