How can I produce equation from data set and optimize the equation
조회 수: 23 (최근 30일)
이전 댓글 표시
Dear All,
I have a data set that contains no of 5x340 cells. In this set 4 colunms are the ingredients of a material. The fifth colum represents the result of mechanical test. My questions are;
- How can I produce equation from these data set?
- Which algorithm can I use to optimize the test results?
Thanks in advance
댓글 수: 0
답변 (1개)
ANKUR KUMAR
2021년 7월 11일
편집: ANKUR KUMAR
2021년 7월 11일
In order to produce equations for the datasets,, you can use fitnlm fucntion to do that. You will get an equation from that.
Since I do not have the data, I am using random dataset.
random_data=randi(1000,50,5); % Generating random data
variables=random_data(:,1:4); % In this set 4 colunms are the ingredients of a material.
output_value=random_data(:,5); % The fifth colum represents the result of mechanical test
modelfun = @(b,x) b(1)*x(:,1)+ b(2)*x(:,2)+ b(3)*x(:,3)+ b(4)*x(:,4) ;
beta = [-5 -5 -5 -5];
mdl = fitnlm(variables,output_value,modelfun,beta);
In order to optimize the equation, calcualate some statistics like correlation to check the error in estimation. In order to minimize the error, you need to play with the beta variable (initial points). You can put the whole code in loop so that beta values keep on changing, and you can store the statistics (like correlation and RMSE) to see which combination of beta leads to the maximum correlation and minimum RMSE.
% coefficients of the equation
coefficients=mdl.Coefficients.Estimate
coeff_err=mdl.Coefficients.SE;
Variables_covar=mdl.CoefficientCovariance(:,1);
new_value=variables*coefficients;
variance=[var(output_value,'omitnan') var(new_value,'omitnan')];
scatter(output_value,new_value)
xlabel('Observation values')
ylabel('Estimated values')
correlation=corr(output_value,new_value)
mean_error=mean(output_value-new_value, 'omitnan') % this is not RMSE, this is just the mean of error
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Genetic Algorithm에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!