%Owner: Lenganji Simwanda, Copyright Stellenbosch University,
%email:lenganjisimwanda@gmail.com,
function Y=gpr_fcn(X)
% Y is the output parameter: shear capacity
% X is the input vectors with parameters in the following order:
%   [bw, h, d, lspan, rho, a\d, a_v/d, d_s, f_c, V_f, lambda, f_uf]
load('trainedModel_all.mat')
Y=trainedModel_all.predictFcn(X);
end