I'm trying to obtain an optimized equation such as A as a function of (B,C,D,E), but I'm not knowing where to start with and how to use Matlab to obtain the coefficients for B,C,D,E. The below rough code gives an understanding of the output generated for the combinations.
for A=0.1:0.1:0.9
for B=0.1:0.1:0.5
for C=0.071:0.071:0.214
for D=1:1:6
[E output] % say this is N x 2.
end
end
end
end
The lower bound and upper bound for each of them are the starting value and the ending value as given in the rough code.
Any help on this is very highly appreciated.