check variable within 5% of a fixed value
이전 댓글 표시
checkp5=1;
while checkp5<2
if prms2>=pstd2*0.95
if prms2<=pstd2*1.05
P;
Q;
T;
checkp5=2;
else
alphap=alphap*(pstd2/prms2);
P=((E/(1+v))*a_barjk'*matrixp)/(a_barjk'*a_barjk+alphap*(c'*c));
pmisfit=matrixp-((1+v)/E)*(a_barjk*P);
prms2=(1/20)*sum(pmisfit.^2,'all');
end
end
end
I need a code to check if prms2 is within 5% of pstd2(which is already fixed value) if not, P, pmisfit & prms2 will be recalculated until it falls within the 5% range
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!