Login     Register

        Contact Us     Search

XLeratorDB/engineering Online Documentation

SQL Server IMCONJUGATE function


 
Updated: 27 August 2010
Use the IMCONJUGATE function to return the complex conjugate of a complex number in x + yi or x + yj format.
Syntax
SELECT [wctEngineering].[wct].[IMCONJUGATE] (
   <@inumber, nvarchar(4000),>)
Arguments
@inumber
is the value at which to evaluate the function. @inumber is an expression of type varchar or of a type that can be implicitly converted to varchar and must be in the format x + yi or x + yj, where x is a real number that can be converted to float and yi (or yj) is an imaginary number, where the y part can be converted to float.
Return Types
varchar(4000)
Remarks
·         Use COMPLEX to convert real and imaginary coefficients into a complex number
·         IMCONJUGATE(‘x+yi’)= ‘x-yi’
Examples

select
wct.IMCONJUGATE('7+24i')

This produces the following result
--------------------------
7-24i
 
(1 row(s) affected)


Copyright 2008-2024 Westclintech LLC         Privacy Policy        Terms of Service