I have the following function
B[C_, alfa_, x_] := (x*Sqrt[(105*C)/(8*Pi*(10 - 3*alfa))])/
Sqrt[gmod[C, alfa, x]].
where the function gmod has been defined elsewhere and it's not relevant here. Let's specialise to the case alfa = 0. I want to find the maximum of B, for different C parameters. The values of C are taken from this list:
cList = {0.33282, 0.338, 0.34322, 0.34848, 0.35378, 0.35912, 0.3645, 0.36992}
I can manage to do it one by one, but I would like to compute this for all of them at once. I tried this:
BMax =
Do[FindMaximum[Bmod[i, 0, x], {x, 0.5, 1}], {i, cList[[1]], cList[[8]]}]
but I do not get any output. Any help would be appreciated.