ImaginaryResultError.st
branchjv
changeset 18120 e3a375d5f6a8
parent 17911 a99f15c5efa5
parent 16556 2bac9645034c
equal deleted inserted replaced
18119:cb7a12afe736 18120:e3a375d5f6a8
     1 "
     1 "
     2  COPYRIGHT (c) 2003 by eXept Software AG
     2  COPYRIGHT (c) 2003 by eXept Software AG
     3               All Rights Reserved
     3 	      All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     5  This software is furnished under a license and may be used
     6  only in accordance with the terms of that license and with the
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
    22 !ImaginaryResultError class methodsFor:'documentation'!
    22 !ImaginaryResultError class methodsFor:'documentation'!
    23 
    23 
    24 copyright
    24 copyright
    25 "
    25 "
    26  COPYRIGHT (c) 2003 by eXept Software AG
    26  COPYRIGHT (c) 2003 by eXept Software AG
    27               All Rights Reserved
    27 	      All Rights Reserved
    28 
    28 
    29  This software is furnished under a license and may be used
    29  This software is furnished under a license and may be used
    30  only in accordance with the terms of that license and with the
    30  only in accordance with the terms of that license and with the
    31  inclusion of the above copyright notice.   This software may not
    31  inclusion of the above copyright notice.   This software may not
    32  be provided or otherwise made available to, or used by, any
    32  be provided or otherwise made available to, or used by, any
    37 
    37 
    38 documentation
    38 documentation
    39 "
    39 "
    40     Raised by square root functions when the functions-arg is negative,
    40     Raised by square root functions when the functions-arg is negative,
    41     so that the result would be imaginary.
    41     so that the result would be imaginary.
    42     For example, 
    42     For example,
    43         -1 sqrt
    43 	-1 sqrt
    44 
    44 
    45     Can be cought (see Complex >> trapImaginary) to automagically convert to Complex)
    45     Can be caught (see Complex >> trapImaginary) to automagically convert to Complex)
    46 "
    46 "
    47 ! !
    47 ! !
    48 
    48 
    49 !ImaginaryResultError class methodsFor:'initialize'!
    49 !ImaginaryResultError class methodsFor:'initialize'!
    50 
    50 
    53 ! !
    53 ! !
    54 
    54 
    55 !ImaginaryResultError class methodsFor:'documentation'!
    55 !ImaginaryResultError class methodsFor:'documentation'!
    56 
    56 
    57 version
    57 version
    58     ^ '$Header: /cvs/stx/stx/libbasic/ImaginaryResultError.st,v 1.2 2003/08/29 19:15:11 cg Exp $'
    58     ^ '$Header: /cvs/stx/stx/libbasic/ImaginaryResultError.st,v 1.3 2014-06-10 10:13:28 cg Exp $'
    59 ! !
    59 ! !
    60 
    60 
    61 ImaginaryResultError initialize!
    61 ImaginaryResultError initialize!
    62 
       
    63 
       
    64