Here simple code keeps freezing my matlab, guess why?
이전 댓글 표시
Hi, the following code keeps my matlab freezed(busy). And it never get solved!
y=[9048;4807;3393;2686;2262;1980;1778;1626;1508];
z=[22187;11787;8321;6587;5547;4854;4359;3988;3699];
beta=0.985^2;
alpha=0.3;
gamma=0.03;
phi=roundn([2.077869902373392 2.560745705954086], -3);
R=3026;
syms x;
eval=zeros(2,9);
for i=1:9
[eval(:,i)]=solve(gamma/(R-(1+phi(1)*x)*(1+phi(2)))-z(i)-((1+alpha*beta)/beta*(gamma/x-y(i))), x);
end
Saying code is not that correct in Loop.
But, even after removing loop and plugging just y(1) and z(1) doesn't work.
Do you know the reason? Is it memory problem? or any suggestion, please?
댓글 수: 1
Alexander
2012년 3월 20일
Which version of MATLAB are you using? My MATLAB returns the following result after less than one second:
eval =
408.4511 408.4511 408.4511 408.4511 408.4511 408.4511 408.4511 408.4511 408.4511
-0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000 -0.0000
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!