∿ ∿ ∿ ∿ ∿ ∿ ∿ ∿
You are standing in a few inches of sea water on a beach.
You are wondering whether the high tide is coming soon or it has just passed.
Therefore, you will write a code in MATLAB to analyze following data.
You followed the sequence of water lines left by several swash of waves.
The data array A contains the distances the water traveled past your feet during each upward swash of waves.
Your code will return 1 if the high tide is coming soon.
Your code will return 0 if the high tide has just passed.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers395
Suggested Problems
-
1365 Solvers
-
Sum of diagonal of a square matrix
1640 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
651 Solvers
-
Duplicate each element of a vector.
637 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1269 Solvers
More from this Author99
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Is there a reference, that I can use, for predicting high/low tide from the water line height? I don't want to construct a solution based on the test suite data.
We can use derivatives for predicting the high tide (diff) when we can assume that a function is increasing or decreasing (even with some noise).