From 7ce331c01ce6eb7b3f5c715a38a24359da9c6ee2 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 22 Nov 2001 14:04:29 +0000 Subject: Totally rework the math library, this time based on the MacOs X math library (which is itself based on the math lib from FreeBSD). -Erik --- libm/double/mtransp.c | 61 --------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 libm/double/mtransp.c (limited to 'libm/double/mtransp.c') diff --git a/libm/double/mtransp.c b/libm/double/mtransp.c deleted file mode 100644 index b4a54dd0f..000000000 --- a/libm/double/mtransp.c +++ /dev/null @@ -1,61 +0,0 @@ -/* mtransp.c - * - * Matrix transpose - * - * - * - * SYNOPSIS: - * - * int n; - * double A[n*n], T[n*n]; - * - * mtransp( n, A, T ); - * - * - * - * DESCRIPTION: - * - * - * T[r][c] = A[c][r] - * - * - * Transposes the n by n square matrix A and puts the result in T. - * The output, T, may occupy the same storage as A. - * - * - * - */ - - -mtransp( n, A, T ) -int n; -double *A, *T; -{ -int i, j, np1; -double *pAc, *pAr, *pTc, *pTr, *pA0, *pT0; -double x, y; - -np1 = n+1; -pA0 = A; -pT0 = T; -for( i=0; i