Below is a MATLAB program that evaluates the mathematical expression
% Prompt the user to enter the value of x
x = input('Enter the value of x: ');
% Evaluate the expression A
A = (x^2 - 3*x + 2) / (2*x - 5);
% Display the result
fprintf('The value of A is: %.2f\\', A);