⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.c

📁 cfront是最开始c++语言到C语言的转换工具
💻 C
字号:
/*ident	"@(#)cls4:lib/complex/complex/log.c	1.1" *//******************************************************************************* C++ source for the C++ Language System, Release 3.0.  This productis a new release of the original cfront developed in the computerscience research center of AT&T Bell Laboratories.Copyright (c) 1991 AT&T and UNIX System Laboratories, Inc.Copyright (c) 1984, 1989, 1990 AT&T.  All Rights Reserved.THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of AT&T and UNIX SystemLaboratories, Inc.  The copyright notice above does not evidenceany actual or intended publication of such source code.*******************************************************************************/#include <complex.h>#include "const.h"#include <osfcn.h>#define	LOGDANGER	1e18#define PERIL(t) (t > LOGDANGER || (t < 1/LOGDANGER && t != 0) )complexlog(complex z)/*	The complex natural logarithm of "z".	If z = 0, then the answer LOGWILD + 0*i is returned.	Stu Feldman says that the peril tests for the following function	are "acceptable for now", but certain things like	complex variables outside the over/underflow range 	will cause floating exceptions.*/{	complex	answer;		double  partial;	c_exception ex( "log", z );	if ( z.re == 0 && z.im == 0)	{		ex.type = SING;		ex.retval.re = HUGE;		if ( !complex_error( ex ))		{			(void) write( 2, "log: singularity: log((0,0))\n", 29 );			errno = EDOM;		}    		return ex.retval;    	}	/*     		 Check for (over/under)flow, and fixup if necessary.	*/	double x = ABS(z.re);	double y = ABS(z.im);	if ( x>y && PERIL(x) ) {		z.im /=x;		z.re /= x;  /* z.re is replaced by 1 or -1 */		partial = log(x);	}	else if (PERIL(y)) {		z.im /= y;  /* roles of re, im reversed from previous */ 		z.re /= y;		partial = log(y);	}	else partial = 0;	/*		z.re*z.re and z.im*z.im should not cause problems now.	*/    	answer.im = atan2(z.im,z.re); 	answer.re = log(z.re*z.re + z.im*z.im)/2 + partial;	return answer;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -