Sponsored Content
Full Discussion: long doubles
Top Forums Programming long doubles Post 33207 by crashnburn on Thursday 19th of December 2002 04:57:25 PM
Old 12-19-2002
long doubles

hey there,

i've been trrying to calculate the first 10000 fibonacci numbers using a long double. weird thing is that from a certain value it returns Inf.

i'm declaring the vars as
long double var;

and printing them to a file using:
fprintf(filepointer, "%.0Ld\n", var);

am i doing something wrong?
do i have to activate some special support for long doubles (using FreeBSD)? or compile it in a different way?

thx in advance
 

9 More Discussions You Might Find Interesting

1. Programming

C long long HP-UX

I have a program written in C on HP-UX 11i. The program is as below ... long long a; a = 12345678987654321; printf ("%lld",a); I compile the code using cc compiler on HP-UX using -Ae +DD32 option as i want it to create a 32-bit binary. But the... (1 Reply)
Discussion started by: Shobhit
1 Replies

2. Post Here to Contact Site Administrators and Moderators

Long threads?

Greetings, I'm relatively new-comer to these forums and have a Q to the mods. Just wondering what's the policy regarding the long running threads where they tend to go say over 30 posts and they become "troubleshooting" threads rather than being "educational" and/or "hinting" threads? ... (4 Replies)
Discussion started by: vgersh99
4 Replies

3. UNIX for Dummies Questions & Answers

vi.....line too long

I'm getting a "line too long" error when I try to vi a particular file. I really just need to view the contents as I don't have to change anything. Any suggestions?? I already tried to cat but it didnt work........:( (7 Replies)
Discussion started by: shorty
7 Replies

4. Solaris

word too long

Hello, When I try to run a shell script, It throws an error: $ ./SQLExecute.csh Word too long $ echo $CLASSPATH /u02/installs/calypso/calypsorel90000/jars/ $ echo $PATH... (7 Replies)
Discussion started by: panchpan
7 Replies

5. UNIX Desktop Questions & Answers

need help writing a program to look for doubles

to determine if two two doubles are equal, we check to see if their absolute difference is very close to zero. . .if two numbers are less than .00001 apart, theyre equal. keep a count field in each record (as you did in p5). once the list is complete, ask the user to see if an element is on... (2 Replies)
Discussion started by: rickym2626
2 Replies

6. Solaris

Filename too long

Hi, I'm trying to tar on Solaris 9 a directory containing very long filename, so tar exit with the error (filename is greater than 100). Is there a way to bypass this limit (I can't realy control filename long)? Regards (3 Replies)
Discussion started by: ncjbdwqer
3 Replies

7. Shell Programming and Scripting

awk syntax mistake doubles desired output

I am trying to add a line to a BASH shell script to print out a large variable length table on a web page. I am very new to this obviously, but I tried this with awk and it prints out every line twice. What I am doing wrong? echo "1^2^3%4^5^6%7^8^9%" | awk 'BEGIN { RS="%"; FS="^"; } {for (i =... (6 Replies)
Discussion started by: awknewb123
6 Replies

8. UNIX for Dummies Questions & Answers

Remove Doubles Without Sort?

Hi! I have concatenated two files which are wordlists, i.e., one word per line. The new file contains some doubles, but I cannot use sort and uniq as I need to keep the sort order that it is already in, which is not alphabetical, and uniq only compares adjacent lines, and the doubles are not on... (15 Replies)
Discussion started by: sudon't
15 Replies

9. UNIX for Dummies Questions & Answers

Grep words with X doubles only

Hi! I'm trying to figure out how to find words with X number of doubles, only. I'm searching a dictionary, (one word per line). For instance, if you want to find words containing only one pair of double letters, you could do something like this: egrep '(.)\1' wordlist.txt |egrep -v '(.)\1.*(.)\2'... (3 Replies)
Discussion started by: sudon't
3 Replies
CIMAG(3)						   BSD Library Functions Manual 						  CIMAG(3)

NAME
cimag, cimagf, cimagl, conj, conjf, conjl, cproj, cprojf, cprojl, creal, crealf, creall -- functions to manipulate complex numbers LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <complex.h> double cimag(double complex z); float cimagf(float complex z); long double cimagl(long double complex z); double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z); double complex cproj(double complex z); float complex cprojf(float complex z); long double complex cprojl(long double complex z); double creal(double complex z); float crealf(float complex z); long double creall(long double complex z); DESCRIPTION
Let a+b*i denote the complex number z. The creal() functions return the real part a, and the cimag() functions return the imaginary part b. The conj() functions return the complex conjugate a-b*i. The cproj() functions return the projection onto the Riemann sphere. If z contains an infinite component, then the result is infinity +- 0*i, where the (zero) imaginary part of the result has the same sign as b. Otherwise, the result is z. These functions do not signal any floating point exceptions. STANDARDS
The cimag(), conj(), cproj(), and creal() functions conform to ISO/IEC 9899:1999 (``ISO C99''). HISTORY
The cimag(), conj() and creal() functions first appeared in FreeBSD 5.3. The cproj() functions appeared in FreeBSD 8.0. BSD
August 7, 2008 BSD
All times are GMT -4. The time now is 07:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy