Convert degrees to radians
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers201
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2819 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3715 Solvers
-
674 Solvers
-
Matlab Basics - Convert a row vector to a column vector
683 Solvers
-
506 Solvers
More from this Author7
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Hi Jared. If you're going to make problems that have approximate floating point answers (often the case with conversions), you need to allow for some variation in your test suite. ISEQUAL is not a good test in these cases. Instead, maybe use ABS(answer-correct) < tolerance.