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.
y=round(linspace(-L,L,N+1));
I'm not sure what is a real difference between linspace and : operator.
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.
Matrix indexing with two vectors of indices
485 Solvers
Are all the three given point in the same line?
270 Solvers
Calculate the area of a triangle between three points
879 Solvers
407 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!