MATLAB: How coding drag coefficient

dragfor loop

Hi all, I need kindly help to write a code to calculate drag coefficient as the attached figure.
thank you in advance

Best Answer

See if this does what you want:
tau = @(U10) 1.22.*[1.2E-3.*((4 < U10) & (U10 < 11)) + 1E-3*(0.49 + 0.065*U10).*((11 <= U10) & (U10 < 25))].*U10.^2;
x = linspace(0, 24.9);
figure(1)
plot(x, tau(x))
xlabel('\itU_{10}\rm')
ylabel('\bf\tau\rm')
grid