Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Cephes/qfloat/   (Cephes Mathematical Library ©)  Datei vom 12.5.2026 mit Größe 960 B image not shown  

Quelle  qhead32.h

  Sprache: C
 

#ifndef __QHEAD_H
#define __QHEAD_H

/* Type of the array elements in a Q-type number */
typedef unsigned int QELT;

/* Number of bits in a word of that type */
#define WORDSIZE 32

/* Most significant bit of that type.  */
#define SIGNBIT ((unsigned int1 << (WORDSIZE-1))

/* Largest exponent value */
#define MAXEXP 65536

/* The exponent of 1.0 */
#define EXPONE 0x8001

/* Number of WORDSIZE-bit words in a q type number (12 or 24) */
#define NQ 14

/* Number of words in significand area */
#define OMG (NQ-2)

/* Byte offset to least significant word of significand */
#define OFFS (4*OMG+4)

/* Number of bits of precision */
#define NBITS ((OMG-1)*WORDSIZE)

/* Maximum number of decimal digits in conversion */
#define NDEC (NBITS*8/27)

typedef struct
 {
 QELT r[NQ];
 QELT i[NQ];
 }qcmplx;

typedef struct
 {
 QELT n[NQ]; /* numerator */
 QELT d[NQ]; /* denominator */
 }qfract;

#ifndef __MCONF_H
#include "mconf.h"
#endif
#endif /* __QHEAD_H */

Messung V0.5 in Prozent
C=74 H=100 G=87

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-23) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.