#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
int main(void)
{
_Complex z1, z2, z3;
z1 = .4 + .7i;
z2 = pow(z1, 2);
z3 = z1 * z1;
printf("%f, %f \n", z1);
printf("%f, %f \n", z2);
printf("%f, %f \n", z3);
system("PAUSE");
return 0;
}
In this program, z2 is not equal to z3 . z3 looks correct. On my
implementation (devcpp on its maiden voyage), z2 becomes the real part
squared, and the complex part zeros out and is probably undefined.
Q1)With C99's new types, how does one use the old math functions?
Q2)Is complex or _Complex a better type defn? LS 21 4115
On Feb 1, 1:18 pm, "Lane Straatman" <inva...@invalid.netwrote:
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
int main(void)
{
_Complex z1, z2, z3;
z1 = .4 + .7i;
z2 = pow(z1, 2);
z3 = z1 * z1;
printf("%f, %f \n", z1);
printf("%f, %f \n", z2);
printf("%f, %f \n", z3);
system("PAUSE");
return 0;}
In this program, z2 is not equal to z3 . z3 looks correct. On my
implementation (devcpp on its maiden voyage), z2 becomes the real part
squared, and the complex part zeros out and is probably undefined.
Q1)With C99's new types, how does one use the old math functions?
You should use math functions designed to work with complex operands.
For example, instead of pow, use cpow.
Q2)Is complex or _Complex a better type defn? LS
The former.
Try something like:
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
int main (void)
{
double complex z1, z2, z3;
z1 = .4 + .7I;
z2 = cpow(z1, 2.0);
z3 = z1 * z1;
printf("%lf %lf\n", creal(z1), cimag(z1));
printf("%lf %lf\n", creal(z2), cimag(z2));
printf("%lf %lf\n", creal(z3), cimag(z3));
return EXIT_SUCCESS;
}
--
Hope this helps,
Steven
<at*************@gmail.comwrote in message
news:11**********************@l53g2000cwa.googlegr oups.com...
On Feb 1, 1:18 pm, "Lane Straatman" <inva...@invalid.netwrote:
>Q1)With C99's new types, how does one use the old math functions?
You should use math functions designed to work with complex operands.
For example, instead of pow, use cpow.
Thanks for your reply. I was completely ignorant of cpow's existence.
>Q2)Is complex or _Complex a better type defn? LS
The former.
I think so too.
Try something like:
[refines source with better type defns and output]
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
#include <stdbool.h>
#define N 41
#ifdef __bool_true_false_are_defined
#define N 42
#endif
int main (void)
{
double complex z1, z2, z3;
bool flag;
z1 = .4 + .7I;
z2 = cpow(z1, 2.0);
z3 = z1 * z1;
flag = false;
flag = true;
if (flag)
{
printf("%lf %lf\n", creal(z1), cimag(z1));
printf("%lf %lf\n", creal(z2), cimag(z2));
printf("%lf %lf\n", creal(z3), cimag(z3));
printf("%d\n", N);
}
system("PAUSE");
return EXIT_SUCCESS;
}
This program is of no great profoundness; I don't know of any way to get
used to new aspects of syntax without simply plodding ahead beginning with
elementary-looking stuff. It's a bit of a trick just to get the headers
included. LS
"Lane Straatman" <in*****@invalid.netwrites:
#include <stdio.h>
#include <stdlib.h>
You don't use anything in <stdlib.h>.
#include <complex.h>
int main(void)
{
_Complex z1, z2, z3;
_Complex is not a type; the complex types are "float _Complex",
"double _Complex", and "long double _Complex". If your compiler
allows _Complex by itself, it may be due to a misunderstanding by its
authors; there's an incorrect example in the standard. C99 6.7.8
Example 1 is:
int i = 3.5;
complex c = 5 + 3 * I;
which is illegal. N1124 corrects this to:
int i = 3.5;
double complex c = 5 + 3 * I;
z1 = .4 + .7i;
z2 = pow(z1, 2);
You want cpow, not pow.
z3 = z1 * z1;
printf("%f, %f \n", z1);
printf("%f, %f \n", z2);
printf("%f, %f \n", z3);
A format of "%f, %f \n" requires two arguments of type double. You're
giving it a single argument of a complex type, which invokes undefined
behavior. There's are printf formats for complex numbers; you need to
print the real and complex parts separately, using the creal() and
cimag() functions.
system("PAUSE");
I get:
sh: PAUSE: command not found
return 0;
}
In this program, z2 is not equal to z3 . z3 looks correct. On my
implementation (devcpp on its maiden voyage), z2 becomes the real part
squared, and the complex part zeros out and is probably undefined.
Q1)With C99's new types, how does one use the old math functions?
<complex.hdeclares math functions for complex types.
Q2)Is complex or _Complex a better type defn? LS
The new keyword is spelled "_Complex" only to avoid breaking existing
code. If you #include <complex.h>", you get "complex" as a macro that
expands to "_Complex". "_Complex" is almost deliberately ugly;
there's no need to use it in user code. Just use "complex" -- or
rather "double complex".
Here's a corrected version of your program:
#include <stdio.h>
#include <complex.h>
int main(void)
{
double complex z1, z2, z3;
z1 = .4 + .7i;
z2 = cpow(z1, 2);
z3 = z1 * z1;
printf("%f, %f \n", creal(z1), cimag(z1));
printf("%f, %f \n", creal(z2), cimag(z1));
printf("%f, %f \n", creal(z3), cimag(z1));
return 0;
}
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Keith Thompson <ks***@mib.orgwrites:
"Lane Straatman" <in*****@invalid.netwrites:
> z2 = pow(z1, 2);
You want cpow, not pow.
I think that, if he additionally includes <tgmath.h>, he can use
plain "pow" here.
--
"C has its problems, but a language designed from scratch would have some too,
and we know C's problems."
--Bjarne Stroustrup
On Feb 1, 5:10 pm, Keith Thompson <k...@mib.orgwrote:
"Lane Straatman" <inva...@invalid.netwrites:
#include <stdio.h>
#include <stdlib.h>
You don't use anything in <stdlib.h>.
There's a system call.
>
#include <complex.h>
int main(void)
{
_Complex z1, z2, z3;
_Complex is not a type; the complex types are "float _Complex",
"double _Complex", and "long double _Complex".
The problem wasn't my compiler. It was the manner in which I read
item 13 off a recent screenshot. The complex type is what is left
after you subtract '_Complex' and ';' from the line in which the type
compiles.
If your compiler
allows _Complex by itself, it may be due to a misunderstanding by its
authors; there's an incorrect example in the standard. C99 6.7.8
Example 1 is:
int i = 3.5;
complex c = 5 + 3 * I;
which is illegal. N1124 corrects this to:
int i = 3.5;
double complex c = 5 + 3 * I;
I started with 3 and 5 but ended with 4 and 7. I was unaware of
cpow. Ben is right that tgmath.h would have overloaded operators that
would still let me use pow(), but the idea is that we're all going to
use the things that C99 offers, in particular, for complex
exponentiation, cpow().
z1 = .4 + .7i;
z2 = pow(z1, 2);
You want cpow, not pow.
z3 = z1 * z1;
printf("%f, %f \n", z1);
printf("%f, %f \n", z2);
printf("%f, %f \n", z3);
A format of "%f, %f \n" requires two arguments of type double. You're
giving it a single argument of a complex type, which invokes undefined
behavior. There's are printf formats for complex numbers; you need to
print the real and complex parts separately, using the creal() and
cimag() functions.
system("PAUSE");
I get:
sh: PAUSE: command not found
return 0;
}
In this program, z2 is not equal to z3 . z3 looks correct. On my
implementation (devcpp on its maiden voyage), z2 becomes the real part
squared, and the complex part zeros out and is probably undefined.
Q1)With C99's new types, how does one use the old math functions?
<complex.hdeclares math functions for complex types.
Q2)Is complex or _Complex a better type defn? LS
The new keyword is spelled "_Complex" only to avoid breaking existing
code. If you #include <complex.h>", you get "complex" as a macro that
expands to "_Complex". "_Complex" is almost deliberately ugly;
there's no need to use it in user code. Just use "complex" -- or
rather "double complex".
Here's a corrected version of your program:
#include <stdio.h>
#include <complex.h>
int main(void)
{
double complex z1, z2, z3;
z1 = .4 + .7i;
z2 = cpow(z1, 2);
z3 = z1 * z1;
printf("%f, %f \n", creal(z1), cimag(z1));
printf("%f, %f \n", creal(z2), cimag(z1));
printf("%f, %f \n", creal(z3), cimag(z1));
return 0;
}
The above is basically what steven posted, beating your punch in
cyberspace, to judge from the time. The number 13 reference was to a
screenshot I made in the context of 1142.pdf that I think has
relevance now. I'm posting from google and feel like Mr. Magoo. LS
"lane straatman" <gr**********@netzero.netwrites:
On Feb 1, 5:10 pm, Keith Thompson <k...@mib.orgwrote:
"Lane Straatman" <inva...@invalid.netwrites:
#include <stdio.h>
#include <stdlib.h>
You don't use anything in <stdlib.h>.
There's a system call.
You're right, my mistake. I deleted the system("PAUSE"); call from my
copy of your program, since it the PAUSE command is non-portable.
#include <complex.h>
int main(void)
{
_Complex z1, z2, z3;
_Complex is not a type; the complex types are "float _Complex",
"double _Complex", and "long double _Complex".
The problem wasn't my compiler. It was the manner in which I read
item 13 off a recent screenshot. The complex type is what is left
after you subtract '_Complex' and ';' from the line in which the type
compiles.
Sorry, I can't figure out what you mean here.
The declaration you posted:
_Complex z1, z2, z3;
is illegal. Some compilers (including gcc 4.1.1) accept it. I
suspect they do so because of the incorrect exapmle in the C99
standard, corrected in n1124.pdf.
Was the code you posted not the actual code you compiled?
[...]
The above is basically what steven posted, beating your punch in
cyberspace, to judge from the time. The number 13 reference was to a
screenshot I made in the context of 1142.pdf that I think has
relevance now. I'm posting from google and feel like Mr. Magoo. LS
Not having seen your screenshot, I still have no idea what "13" refers
to. Would you care to clarify?
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
"Keith Thompson" <ks***@mib.orgwrote in message
news:ln************@nuthaus.mib.org...
"lane straatman" <gr**********@netzero.netwrites:
>On Feb 1, 5:10 pm, Keith Thompson <k...@mib.orgwrote:
_Complex is not a type; the complex types are "float _Complex",
"double _Complex", and "long double _Complex".
The problem wasn't my compiler. It was the manner in which I read item 13 off a recent screenshot. The complex type is what is left after you subtract '_Complex' and ';' from the line in which the type compiles.
Sorry, I can't figure out what you mean here.
http://www.billfordx.net/screendumps/n1142_shot1.htm
I think there's a complex type of long double. If there isn't, it would
shed some light on the issue at hand. LS
[cut and added]
Not having seen your screenshot, I still have no idea what "13" refers
to. Would you care to clarify?
I love the quality of the standard that makes it look like print. LS
"Lane Straatman" <in*****@invalid.netwrites:
"Keith Thompson" <ks***@mib.orgwrote in message
news:ln************@nuthaus.mib.org...
"lane straatman" <gr**********@netzero.netwrites:
On Feb 1, 5:10 pm, Keith Thompson <k...@mib.orgwrote:
_Complex is not a type; the complex types are "float _Complex",
"double _Complex", and "long double _Complex".
The problem wasn't my compiler. It was the manner in which I read
item 13 off a recent screenshot. The complex type is what is left
after you subtract '_Complex' and ';' from the line in which the type
compiles.
Sorry, I can't figure out what you mean here.
http://www.billfordx.net/screendumps/n1142_shot1.htm
I think there's a complex type of long double. If there isn't, it would
shed some light on the issue at hand. LS
n1124 is a PDF document. You should be able to copy-and-paste text
from the document and post it here, rather than having to set up a web
page with a jpg image of a screenshot.
The screenshot was a copy of paragraphs 11 through 13 of section 6.2.5
of n1124.pdf:
11 There are three _complex types_, designated as float _Complex,
double _Complex, and long double _Complex. The real floating and
complex types are collectively called the _floating types_.
12 For each floating type there is a _corresponding real type_, which
is always a real floating type. For real floating types, it is the
same type. For complex types, it is the type given by deleting the
keyword _Complex from the type name.
13 Each complex type has the same representation and alignment
requirements as an array type containing exactly two elements of
the corresponding real type; the first element is equal to the real
part, and the second element to the imaginary part, of the complex
number.
The phrase "a complex type of long double" doesn't make much sense,
I'm afraid. There is a type "long double _Complex"; its
"corresponding real type" is long double. (long double itself, of
course, is not a complex type.) There is no type "_Complex", though
some compilers may allow it.
If you have a "#include <complex.h>", the type "long double _Complex"
can be referred to as "long double complex" -- and in fact that would
be the normal way to refer to it.
I fail to see how this sheds any light on the issue at hand -- perhaps
because I've completely lost track of what the issue at hand might be.
The original program you posted had several errors; I think they've
all been pointed out. Did you have any other questions, or is
everything sufficiently clear now?
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
"Keith Thompson" <ks***@mib.orgwrote in message
news:ln************@nuthaus.mib.org...
"Lane Straatman" <in*****@invalid.netwrites:
[...]
If you have a "#include <complex.h>", the type "long double _Complex"
can be referred to as "long double complex" -- and in fact that would
be the normal way to refer to it.
I fail to see how this sheds any light on the issue at hand -- perhaps
because I've completely lost track of what the issue at hand might be.
The original program you posted had several errors; I think they've
all been pointed out. Did you have any other questions, or is
everything sufficiently clear now?
I have a certain reverence for the integers; I'm not alone in my belief that
they came in from on high and then we figured everything else out. C at the
onset had an integer type of int. I think there's eleven integer types.
There might be a dozen. I think C99 admits of a single boolean type 'bool'.
It would be tied with any other type, as far as how new it is to C.
Are there complex types in C? If so, how many? LS
Keith Thompson wrote:
>
.... snip ...
>
n1124 is a PDF document. You should be able to copy-and-paste
text from the document and post it here, rather than having to
set up a web page with a jpg image of a screenshot.
You can make it even simpler from a text source. N869_txt.bz2 is
such a source, slightly edited for suitability for cut and paste
quoting. It's only a 212k download. Available on my page:
<http://cbfalconer.home.att.net/download/>
--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
"Lane Straatman" <in*****@invalid.netwrites:
[...]
Are there complex types in C? If so, how many? LS
Remember that screenshot you posted upthread,
<http://www.billfordx.net/screendumps/n1142_shot1.htm>?
Did you read it? Your question is answered there, quite clearly.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
On Feb 2, 9:50 pm, CBFalconer <cbfalco...@yahoo.comwrote:
Keith Thompson wrote:
n1124 is a PDF document. You should be able to copy-and-paste
text from the document and post it here, rather than having to
set up a web page with a jpg image of a screenshot.
You can make it even simpler from a text source. N869_txt.bz2 is
such a source, slightly edited for suitability for cut and paste
quoting. It's only a 212k download. Available on my page:
I don't think filetypes of .bz2 are windows-friendly. I did just
install cygwin and would be elated if I could read this in that
environment. LS
On Feb 2, 9:02 pm, Keith Thompson <k...@mib.orgwrote:
"Lane Straatman" <inva...@invalid.netwrites:
[...]
n1124 is a PDF document. You should be able to copy-and-paste text
from the document and post it here, rather than having to set up a web
page with a jpg image of a screenshot.
How?
The screenshot was a copy of paragraphs 11 through 13 of section 6.2.5
of n1124.pdf:
11 There are three _complex types_, designated as float _Complex,
double _Complex, and long double _Complex. The real floating and
complex types are collectively called the _floating types_.
The screenshot really is better to convey this. "Complex types" is
rendered in italics. To answer my question, there do exist complex
types. Their cardinality is three.
12 For each floating type there is a _corresponding real type_, which
is always a real floating type. For real floating types, it is the
same type. For complex types, it is the type given by deleting the
keyword _Complex from the type name.
So we were feeling all good about ourselves after number eleven. Here
at number twelve, we're talking about deleting _Complex from a type
name, and when we look to the beginning of the sentence we see "for
complex types." Can you restate it?
13 Each complex type has the same representation and alignment
requirements as an array type containing exactly two elements of
the corresponding real type; the first element is equal to the real
part, and the second element to the imaginary part, of the complex
number.
That's why my output of undefined behavior upthread was correct. It's
aligned.
Blizzard conditions here in Western Michigan. LS
"lane straatman" <gr**********@netzero.netwrites:
On Feb 2, 9:02 pm, Keith Thompson <k...@mib.orgwrote:
"Lane Straatman" <inva...@invalid.netwrites:
[...]
n1124 is a PDF document. You should be able to copy-and-paste text
from the document and post it here, rather than having to set up a web
page with a jpg image of a screenshot.
How?
Probably the same way you'd copy-and-paste anything else from any
other application on your OS. The details are OS-specific, and
possibly application-specific.
The screenshot was a copy of paragraphs 11 through 13 of section 6.2.5
of n1124.pdf:
11 There are three _complex types_, designated as float _Complex,
double _Complex, and long double _Complex. The real floating and
complex types are collectively called the _floating types_.
The screenshot really is better to convey this. "Complex types" is
rendered in italics. To answer my question, there do exist complex
types. Their cardinality is three.
Which I represented above by adding '_' characters before and after
any italic text. It's a little extra work, but since each article is
written once and read many times, it's worth it.
>
12 For each floating type there is a _corresponding real type_, which
is always a real floating type. For real floating types, it is the
same type. For complex types, it is the type given by deleting the
keyword _Complex from the type name.
So we were feeling all good about ourselves after number eleven. Here
at number twelve, we're talking about deleting _Complex from a type
name, and when we look to the beginning of the sentence we see "for
complex types." Can you restate it?
For example, "double _Complex" is a complex type, and it's
"corresponding real type" is "double" (which, of course, is not a
complex type).
[snip]
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
lane straatman wrote:
CBFalconer <cbfalco...@yahoo.comwrote:
>Keith Thompson wrote:
>>n1124 is a PDF document. You should be able to copy-and-paste text from the document and post it here, rather than having to set up a web page with a jpg image of a screenshot.
You can make it even simpler from a text source. N869_txt.bz2 is such a source, slightly edited for suitability for cut and paste quoting. It's only a 212k download. Available on my page:
I don't think filetypes of .bz2 are windows-friendly. I did just
install cygwin and would be elated if I could read this in that
environment.
1-23-02 20:02 69,632 bzip2-100-x86-win32.exe
is the installation file for 1.0.0 on Windoze. It results in a
simple command line executable. Do some googling.
The point of bz2 is that it compresses a good deal more than zip.
This is especially effective when it is compressed once and
transmitted many times.
--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
"lane straatman" <gr**********@netzero.netwrites:
[...]
I don't think filetypes of .bz2 are windows-friendly. I did just
install cygwin and would be elated if I could read this in that
environment. LS
Under Cygwin, "bunzip2 filename.bz2".
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
On 3 Feb 2007 17:49:06 -0800, in comp.lang.c , "lane straatman"
<gr**********@netzero.netwrote:
>On Feb 2, 9:02 pm, Keith Thompson <k...@mib.orgwrote:
>"Lane Straatman" <inva...@invalid.netwrites:
[...]
>n1124 is a PDF document. You should be able to copy-and-paste text from the document and post it here, rather than having to set up a web page with a jpg image of a screenshot.
How?
RTFM for your favorite PDF viewer. With Acrobat Reader there's a even
button to do it, with a really counterintuitive name like "select
text" or something.... :-)
--
Mark McIntyre
"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
"Mark McIntyre" <ma**********@spamcop.netwrote in message
news:ql********************************@4ax.com...
On 3 Feb 2007 17:49:06 -0800, in comp.lang.c , "lane straatman"
<gr**********@netzero.netwrote:
>>On Feb 2, 9:02 pm, Keith Thompson <k...@mib.orgwrote:
>>"Lane Straatman" <inva...@invalid.netwrites:
[...]
>>n1124 is a PDF document. You should be able to copy-and-paste text from the document and post it here, rather than having to set up a web page with a jpg image of a screenshot.
How?
RTFM for your favorite PDF viewer. With Acrobat Reader there's a even
button to do it, with a really counterintuitive name like "select
text" or something.... :-)
No shit:
1. Scope
1 This International Standard specifies the form and establishes the
interpretation of
programs written in the C programming language.1) It specifies
- the representation of C programs;
- the syntax and constraints of the C language;
--
LS
"Keith Thompson" <ks***@mib.orgwrote in message
news:ln************@nuthaus.mib.org...
"lane straatman" <gr**********@netzero.netwrites:
>On Feb 2, 9:02 pm, Keith Thompson <k...@mib.orgwrote:
The screenshot was a copy of paragraphs 11 through 13 of section 6.2.5
of n1124.pdf:
11 There are three _complex types_, designated as float _Complex,
double _Complex, and long double _Complex. The real floating and
complex types are collectively called the _floating types_.
The screenshot really is better to convey this. "Complex types" is rendered in italics. To answer my question, there do exist complex types. Their cardinality is three.
>So we were feeling all good about ourselves after number eleven. Here at number twelve, we're talking about deleting _Complex from a type name, and when we look to the beginning of the sentence we see "for complex types." Can you restate it?
For example, "double _Complex" is a complex type, and it's
"corresponding real type" is "double" (which, of course, is not a
complex type).
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
#include <math.h>
int main(void)
{
long double complex z1, z3, z4, z5;
long double mod, phi, a, b, c, d;
z1 = .4 + .7I;
a = creal(z1);
b = cimag(z1);
mod = sqrt(pow(a, 2) + pow(b, 2));
phi = atan(b/a);
c = ( (sqrt(mod)) * cos( .5 * phi ) );
d = ( (sqrt(mod)) * sin( .5 * phi ) );
z4 = c + d*I;
z5 = cpow(z1, .5);
z3 = cpow(z4, 2.0);
printf("The square root of %lf %lfi\n", creal(z1), cimag(z1));
printf("is : %lf %lfi\n", creal(z4), cimag(z4));
printf("using cpow to get the root: %lf %lfi\n", creal(z5), cimag(z5));
printf("using cpow to check the square: %lf %lfi\n", creal(z3),
cimag(z3));
system("PAUSE");
return 0;
}
Have I mixed types here in a bad way? LS
"Lane Straatman" <in*****@invalid.netwrites:
[...]
#include <stdio.h>
#include <stdlib.h>
#include <complex.h>
#include <math.h>
int main(void)
{
long double complex z1, z3, z4, z5;
long double mod, phi, a, b, c, d;
z1 = .4 + .7I;
a = creal(z1);
b = cimag(z1);
mod = sqrt(pow(a, 2) + pow(b, 2));
phi = atan(b/a);
c = ( (sqrt(mod)) * cos( .5 * phi ) );
d = ( (sqrt(mod)) * sin( .5 * phi ) );
z4 = c + d*I;
z5 = cpow(z1, .5);
z3 = cpow(z4, 2.0);
printf("The square root of %lf %lfi\n", creal(z1), cimag(z1));
printf("is : %lf %lfi\n", creal(z4), cimag(z4));
printf("using cpow to get the root: %lf %lfi\n", creal(z5), cimag(z5));
printf("using cpow to check the square: %lf %lfi\n", creal(z3),
cimag(z3));
system("PAUSE");
return 0;
}
Have I mixed types here in a bad way? LS
The imaginary literals .7I is a gcc extension. You'll get a warning
if you compile with "gcc -std=c99 -pedantic". (It also warns about
"I" in the assignment to z4, but that's a bogus warning.)
The system("PAUSE") is non-portable; try finding some other way to
keep the program's output on the screen.
You declare your variables of type long double or long double complex,
but you use functions that work on double or double complex.
Rather than pow(a, 2), I'd just write a * a.
Th names z1, z2, z3, z4, and z5 make it hard to follow what's going
on.
Those are the only problems I see off the top of my head.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Keith Thompson wrote:
>
.... snip ...
>
The system("PAUSE") is non-portable; try finding some other way to
keep the program's output on the screen.
This is almost a sure sign of (mis)using Visual C's IDE. Which can
be cured by simply using a DOSBOX. Borlands IDE at least has a
means of showing the user screen (or used to).
--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
"A man who is right every time is not likely to do very much."
-- Francis Crick, co-discover of DNA
"There is nothing more amazing than stupidity in action."
-- Thomas Matthews This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: cwdjrxyz |
last post by:
Javascript has a very small math function list. However there is no
reason that this list can not be extended greatly. Speed is not an
issue,...
|
by: Ingmar |
last post by:
Simple comparison tests we have performed show that System.Math
functions in C# are much slower than corresponding functions in C++.
Extreme...
|
by: markaelkins |
last post by:
In the code below I’m trying to figure out how to dynamically perform math
functions in a form. To start, I would like to subtract
TxtITotal.Text...
|
by: kai |
last post by:
Hi,
How to find the list of SQL math functions in SQL Server 2005?
Thanks
Kai
|
by: Ney André de Mello Zunino |
last post by:
Hello.
The following program:
#include <list>
#include <iterator>
#include <algorithm>
#include <cmath>
#include <iostream>
|
by: Alan |
last post by:
I have a couple of questions about using a variable number of
arguments in a function call (...). The context is that I have some
mathematical...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...
| |