Hi,
This should be not that hard, but I tried many different ways, I can't figure it out. If you can take a quick look and help me, it would be very appreciable.
As you see in the code, I have three plots, but they are all in same colors. How can I make them different?
Clear[x]
L1 = 10;
L2 = {30, 40, 48};
f[x_] = 100 (100/x)^(-(L2/L1));
Plot[f[x], {x, 90, 100}, PlotStyle -> Dashed,
PlotStyle -> {Black, Red, Blue},
AxesLabel -> {"10mm transmittance (%)", "target transmittance (%)"}]
Print["Sample thickness(mm)= ", L1]
Print["Target thickness(mm)= ", L2]
Thank you so much in advance.