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 次查看(过去 30 天)
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

回答(2 个)

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

kendall
kendall 2014-1-30
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

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by