Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site epsilon.UUCP Path: utzoo!watmath!clyde!burl!ulysses!gamma!epsilon!egs From: egs@epsilon.UUCP (Ed Sheppard) Newsgroups: net.math Subject: Re: Determinant Evaluation Message-ID: <36@epsilon.UUCP> Date: Sun, 24-Feb-85 01:51:40 EST Article-I.D.: epsilon.36 Posted: Sun Feb 24 01:51:40 1985 Date-Received: Wed, 27-Feb-85 03:53:50 EST References: <3300010@uokvax.UUCP> Organization: BELLCORE, Livingston, NJ Lines: 31 > Give a method to find the determinant of a 1000 by 1000 matrix > using recursion. Forgive the Fortranishness of this. float determ(n,a) int n; float a[n][n]; /* ugh! */ { int i, j; if(n==1 || a[0][0]==0) { return(a[0][0]); } for(i=1; i