i have a vector of drag coefficients im using as inputs for an equation. i have determined which gives the largest value. how do i display the drag coefficient used to get this value?

1 view (last 30 days)
i have a vector of drag coefficients im using as inputs for an equation. i have determined which gives the largest value. how do i display the drag coefficient used to get this value?.the teacher said i should use a max with two output values indexing

Answers (2)

Walter Roberson
Walter Roberson on 30 Jan 2014
[maxvalue, indexofmax] = max(YourComputedVector);
YourDragVector(indexofmax)

kendall
kendall on 30 Jan 2014
This is what the output should look like.
Frontal area of all cars (m2) 2.6728 3.1039 3.3179 2.7491 2.8300 1.7819 1.3746
Largest frontal area (m2) 3.317928664533713
The drag coefficient used 0.29

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!