check variable within 5% of a fixed value
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!