Problem 43282. Analyze observation data
Suppose you have the following data (A,B,C) in three-column format.
A B C -------------------------- t=1 2.2 2.6 2.4 t=2 2.4 2.8 2.2 t=3 2.6 2.7 2.4 t=4 2.7 2.6 2.5 t=5 2.6 2.5 2.6 t=6 2.5 2.4 3.0
Write a function to find and return the maximum value from each column as well as its time index. For the supplied example, A has a maximum value of 2.7 when t=4, B has a maximum of 2.8 when t=2, and C has a maximum of 3.0 when t=6. Therefore, the function should output:
m = [2.7 2.8 3.0] tm = [4 2 6]
Solution Stats
Problem Comments
-
1 Comment
The problem description has been cleaned up and the test suite enhanced and expanded.
Solution Comments
Show commentsProblem Recent Solvers64
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
46142 Solvers
-
Side of an equilateral triangle
5410 Solvers
-
Element by element multiplication of two vectors
358 Solvers
-
98 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
751 Solvers
More from this Author27
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!