I'm writing a function in R that needs to solve the basic quadratic equation and gives you the roots. I need to print out imaginary numbers if applicable. Below is my code. Could anyone give me advice on how I could improve my coding?
quad = function(a, b, c){
D = b^2 - 4*a*c
if (D < 0){
cat("The roots are", x, "and", y,"i\n");
z < - complex(real = x, imaginary = y)
return();
}
x = (-b - D^0.5)/(2*a)
y = (-b + D^0.5)/(2*a)
cat("The two roots are", x, "and", y, "\n");
}
Just keep in mind I'm an incredibly new R programmer, and I am aware this is an incredibly simple code. Any advice would be greatly appreciated.
In the line :
cat("The roots are", x, "and", y,"i\n");
it will search forx
andy
which are not declared. Also it will calculate the roots even ifD<0
so better you use if, else block like: