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
-
1 Comment
y=round(linspace(-L,L,N+1));
-
2 Comments
I'm not sure what is a real difference between linspace and : operator.
The linspace function is for when you know how many elements you want, the colon operator is for when you know the step size.
-
2 Comments
y = linspace(-L,L,N)
It strangely does not work
linspace doesn't work as it gives a std(diff(y)) of the order of 1e-15 and not 0.
Use colon operators.
Problem Recent Solvers798
Suggested Problems
-
272 Solvers
-
211 Solvers
-
Return unique values without sorting
822 Solvers
-
String substitution, sub problem to cryptoMath
216 Solvers
-
Find last zero for each column
384 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!