aqui el codigo de como lo tengo hecho, compila pero no me da el valor me imprime NaN
Código:
private void btnCalcularActionPerformed(java.awt.event.ActionEvent evt) { Ecuacion object=new Ecuacion(); try { this.txtSol1.setText("x1="+object.sol1()); } catch (Exception ex) { this.txtSol1.setText(ex.getMessage()); } try { this.txtSol2.setText("x2="+object.sol2()); } catch (Exception ex) { this.txtSol2.setText(ex.getMessage()); } }