MATLAB: Converting these mathematical formulas to a matlab equation.

math

(x(2y^2-5))/(z+3), (2x-3x+7)/(x-5)^2, and (x-3)/(sqrt(x^2-3x+5)) How can i convert these to a proper matlab equation?

Best Answer

(x-3)./(sqrt(x.^2-3.*x+5)) ;