Changeset 509d4c in git
- Timestamp:
- Dec 4, 2000, 2:05:57 PM (23 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 6f033b6b6340279e600b54c5c6afc99b846b49cf
- Parents:
- 42067f9dba14f45657e6223a9a85d36b91e90e2e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/surf.lib
r42067f r509d4c 1 // $Id: surf.lib,v 1.1 1 2000-07-11 13:19:05 obachmanExp $1 // $Id: surf.lib,v 1.12 2000-12-04 13:05:57 Singular Exp $ 2 2 // 3 3 // author : Hans Schoenemann 4 4 // 5 5 /////////////////////////////////////////////////////////////////////////////// 6 version="$Id: surf.lib,v 1.1 1 2000-07-11 13:19:05 obachmanExp $";6 version="$Id: surf.lib,v 1.12 2000-12-04 13:05:57 Singular Exp $"; 7 7 info=" 8 8 LIBRARY: surf.lib PROCEDURES FOR GRAPHICS WITH SURF … … 15 15 @code{surf} is only available for Linux PCs and Sun workstations. 16 16 You can download @code{surf} either from 17 @uref{http:// enriques.mathematik.uni-mainz.de/kon/surf/surf.shtml}17 @uref{http://sourceforge.net/projects/surf} 18 18 or from @uref{ftp://www.mathematik.uni-kl.de/pub/Math/Singular/utils/}. 19 19 @end texinfo … … 58 58 if (n==0 or n>3) 59 59 { 60 "Cannot plot equations with", n, "variables"; 61 return(); 60 ERROR("Cannot plot equations with", n, "variables"); 62 61 } 63 62 ring r=0,(x,y,z),dp; … … 98 97 else 99 98 { 100 "cannot plot",ncols(I),"equations in",n,"variables";101 return();99 ERROR("cannot plot"+string(ncols(I))+"equations in" 100 +string(n)+"variables"); 102 101 } 103 102 } … … 111 110 if (i!=0) 112 111 { 113 "calling `surf` failed. (the shell return the error code",i,")."; 114 "probably the executable `surf` is not found."; 112 ERROR("calling `surf` failed. (the shell return the error code" 113 +string(i)+")."+newline+ 114 "probably the executable `surf` is not found."); 115 115 } 116 116 i=system("sh","/bin/rm "+l); … … 181 181 } 182 182 /////////////////////////////////////////////////////////////////////////////// 183 184
Note: See TracChangeset
for help on using the changeset viewer.