Storing found values in an array

1 次查看(过去 30 天)
Hi everyone I've written an optimization code for exercise. The results are a series of xs(optimimum moles of different components in the mixture at the equilibrium) and fvals(the minimum values) for different temperatures. I would like to store in an array certain xs,precisely only the x3(7)s that satisfy my "if "condition,so i can use it in a plot. But the result isn't good,if i ask to matlab to visualize the y(j) it gives me only zeros, and I can't really understand where's my mistake. Is there anybody who can give me some tips? Here's part of the code:
for j=1:length(T)
Tj = T(j);
Gjt =Gj3(j,:);
y(j)=zeros;
b3eq = [1*FR + 1
2*FR + 4
1];
LB3 = [0 0 0 0 0 0 0 0 0 0];
x3_0 = [0 0 0 0 0 0 0 0 0 0]+1e-6;
options = optimset('Algorithm','interior-point','MaxFunEvals',1000000,'MaxIter',10000000,'TolCon',1e-12);
[x3,fval] = fmincon(@func3t,x3_0,[],[],A3eq,b3eq,LB3,[],[],options);
G3=fval*R*Tj; % kJ/mol
if x3(7)<10e-7
break
y(j)=x3(7);
end
Thanks a lot!

回答(1 个)

Isabella Osetinsky-Tzidaki
编辑:Isabella Osetinsky-Tzidaki 2016-12-12
any command located between "break" and "end" cannot be performed

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by