I need the value of a changing variable at a specific value

1 Ansicht (letzte 30 Tage)
Nicholas DeGarmo
Nicholas DeGarmo am 14 Apr. 2022
Bearbeitet: KALYAN ACHARJYA am 14 Apr. 2022
clc
clear
close all
AR = 5;
Cl = [0:0.01:1.7];
Cd = 0.04 + (1.26/(pi*AR))*Cl.^2;
LDR = Cl./Cd;
max(LDR)
plot(Cd, Cl,'r')
grid on
xlabel('Cd')
ylabel ('Cl')
I need the value of Cl at the point LDR is at its max value
I have no idea how to find this

Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 14 Apr. 2022
Bearbeitet: KALYAN ACHARJYA am 14 Apr. 2022
The value is
Cl_val=Cl(find(LDR==max(LDR)))

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by