How can I produce equation from data set and optimize the equation
    14 views (last 30 days)
  
       Show older comments
    
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 Comments
Answers (1)
  ANKUR KUMAR
      
 on 11 Jul 2021
        
      Edited: ANKUR KUMAR
      
 on 11 Jul 2021
  
      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 Comments
See Also
Categories
				Find more on Genetic Algorithm 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!