Returns true if either the real or imaginary component of this Complex is a Not-a-Number ( NaN ) value. @return true if either component of the Complex object is NaN ; false , otherwise.
()
| 773 | * <p> |
| 774 | */ |
| 775 | public boolean isNaN() { |
| 776 | return(Double.isNaN(re)||Double.isNaN(im)); |
| 777 | } // end isNaN() |
| 778 | |
| 779 | } |
| 780 |
no outgoing calls