2007-03-23 23:08:55 +01:00
|
|
|
$NetBSD: patch-ah,v 1.10 2007/03/23 22:08:56 dmcmahill Exp $
|
2003-02-24 04:35:29 +01:00
|
|
|
|
2007-03-23 23:08:55 +01:00
|
|
|
--- routines/pvm/pvm_proc_ctrl.c.orig 2005-10-22 18:53:11.000000000 +0000
|
2003-02-24 04:35:29 +01:00
|
|
|
+++ routines/pvm/pvm_proc_ctrl.c
|
2007-03-23 23:08:55 +01:00
|
|
|
@@ -414,7 +414,8 @@ void C2F(scipvmspawn)(char *task, int *
|
update to scilab-3.0
Main Changes Scilab 2.7 -> 3.0
==============================
NEW FUNCTIONALITIES
===================
- continue instruction added
- [a(i,j),b(..),..]=foo(..) syntax is now handled
- arpack algorithms for sparse matrix eigenvalues/eigenvectors computation added
- Levenberg-Marquardt algorithm of Minpack used to define function lsqrsolve
- New graphics mode improved
- beta and legendre function added (thanks to B Pincon)
- Scicos has been extended to handle non causal systems description (supported by RNTL)
- Matlab to Scilab translator has been re-written, and extended to current Matlab syntax.
OTHERS IMPROVEMENTS
===================
- Better discontinuities handling in Scicos
- More efficient number parsing (thanks to B Pincon)
- More efficient 3D Zoom (thanks to E Segre)
- Improved scipad, shortcuts, language handling, colorization, bug fixes.. (thanks to E Segre)
- for loop variable is no more removed at the end of the loops
- figure sizes are now taken into account in Postscript export
- Windows GUI improved
- Graphic windows refresh improved under Windows
- Scilab has been adapated to IA64 architecture
- Helvetica (Arial on Windows) fonts added (corresponding font identifiers are
from 6 to 9) (thanks to B Pincon)
- N dimensionnal matrices efficiency improved (thanks to B Pincon)
- logical expressions shortcuts handled in if
- cd, ls, clc, clf, tohome functions added
- functions with no argument can be called without () if called as a command
2004-07-15 06:00:46 +02:00
|
|
|
char cmd[256];
|
|
|
|
char *arg[4];
|
|
|
|
int nargs= -1;
|
|
|
|
-
|
|
|
|
+ char *path;
|
|
|
|
+
|
|
|
|
arg[0] = NULL;
|
|
|
|
|
|
|
|
cmd[0] = 0;
|
2007-03-23 23:08:55 +01:00
|
|
|
@@ -427,7 +428,13 @@ void C2F(scipvmspawn)(char *task, int *
|
2003-02-24 04:35:29 +01:00
|
|
|
strcpy(cmd, "scilex.exe");
|
|
|
|
#else
|
|
|
|
/* I really need scilab here for gtk -version */
|
|
|
|
- strcpy(cmd, "scilab");
|
|
|
|
+ if (path = getenv("SCI")){
|
|
|
|
+ strcpy(cmd,path);
|
|
|
|
+ strcat(cmd,"/bin/scilab");
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ strcpy(cmd, "scilab");
|
|
|
|
+ }
|
|
|
|
#endif
|
2007-03-23 23:08:55 +01:00
|
|
|
#if (defined __MSC__) || defined(__MINGW32__)
|
2003-02-24 04:35:29 +01:00
|
|
|
if ( _stricmp(task,"null") != 0)
|