To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
CONJG EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
CONJG Example
10 CLEAR SCREEN
20 COMPLEX A,B,Y
30 A=CMPLX(2,1)
40 B=CONJG(A) !Returns the conjugate of A.
50 PRINT "a = 2 + i :";A
60 PRINT "b = conjugate of a: ";B
70 END