CxRecip
AnalysisLibErrType CxRecip (double xReal, double xImaginary, double *outputReal, double *outputImaginary);
Purpose
Finds the reciprocal of a complex number, x. CxRecip obtains the resulting complex number, y, using the following formulas:

Parameters
Input | ||
Name | Type | Description |
x_Real | double | Real part of the complex number whose reciprocal is computed. Default Value: 1.0. |
x_Imaginary | double | Imaginary part of the complex number whose reciprocal is computed. Default Value: 0.0. |
Output | ||
Name | Type | Description |
output_Real | double | Real part of the resulting complex reciprocal. |
output_Imaginary | double | Imaginary part of the resulting complex reciprocal. |
Return Value
Name | Type | Description |
status | AnalysisLibErrType | A value that specifies the type of error that occurred. Refer to analysis.h for definitions of these constants. |
Additional Information
Library: Analysis Library
Include file: analysis.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later
Example
Refer to apps\smithchart\smithdem.cws for an example of using the CxRecip function.