Problem 837. Find all the zeros of sinus , cosinus and tangent in a given interval
- fcn : an anonymous function (@sin, @cos...)
- lb : lower bound
- ub :upper bound
- output : vector with unique values for which the input function return zeroThe values must be sorted in ascending order.
Solution Stats
Problem Comments
-
5 Comments
Correction of assert function.
One of the ")" is in the wrong place.
is:
assert(all(abs(find_zeros(@sin,0,2*pi) -[0 pi 2*pi]<1e-9)))
Should be:
assert(all(abs(find_zeros(@sin,0,2*pi) -[0 pi 2*pi])<1e-9))
As mentioned by others, the 2nd test case is incorrect, -pi/2 is outside the interal [0,2*pi] for the function cosine. And if we do plot cos(x) on said interval, we notice that the cosine function crosses the x-axis only twice.
The –pi/2 has been removed from that test case.
Solution Comments
Show commentsProblem Recent Solvers21
Suggested Problems
-
The Goldbach Conjecture, Part 2
2369 Solvers
-
Construct a string from letters and counts
143 Solvers
-
calculate linear convolution two vectors
137 Solvers
-
173 Solvers
-
Convert a Cell Array into an Array
1939 Solvers
More from this Author30
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!