Hello, I'm having trouble with using vpasolve. I've tested this code in MATLAB and it works, but when I use it in Octave I get a Pythonexception:ZeroDivisionError. My code is as follows:
>>syms y
>> f = ((y^3*0.3)+5*y^2)/(y*(10+y))==((16221-(1.94*300^2)/(y*(10+y)))/(62.4*y*(10+y)))
sol = vpasolve(f,y)
I do have the symbolic package loaded, so that's not the issue...