Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
974 connectés 

  FORUM HardWare.fr
  Linux et OS Alternatifs
  Logiciels

  pb lancement matlab7 ???

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

pb lancement matlab7 ???

n°899886
floppys
Posté le 02-04-2007 à 21:44:48  profilanswer
 

J'ai installé Matlab 7 (R14) et au moment de lancer matlab j'ai ce message d'erreur :
 

Code :
  1. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: syntax error near unexpected token `|'
  2. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: `           MATLAB=|>MATLAB<|'
  3. ---------------------------------------------------------------------------
  4. Warning: Cannot locate Java Runtime Environment (JRE) . . .
  5.          1. Either a correct JRE was not available for redistribution when
  6.             this release was shipped, in which case you should refer to the
  7.             Release Notes for additional information about how to get it.
  8.          2. Or you have tried to use the MATLAB_JAVA environment variable
  9.             to specify an alternate JRE, but MATLAB cannot find it.  Please
  10.             run 'matlab -n' to determine what value you are using for
  11.             MATLAB_JAVA and fix accordingly.
  12. ---------------------------------------------------------------------------
  13.     matlab: No MATLAB bin directory for this machine architecture.
  14.            ARCH = glnx86


 
 
 
Voici éventuellement mon fichier matlab7rc.sh :
 

Code :
  1. #
  2. # usage:        .matlab7rc.sh
  3. #
  4. # abstract:     This Bourne Shell script is sourced by the matlab script
  5. #  to obtain certain site/user dependent information
  6. #  as explained below. The first occurrence of this file
  7. #  in the directory list:
  8. #
  9. #   .   (current)
  10. #   $HOME  (home)
  11. #   matlab/bin (default location)
  12. #
  13. #  is used. Most of the time this file in the default location
  14. #  need not be modified at all and nothing needs to be done.
  15. #  However, if MATLAB does not work properly with the default
  16. #  values then this file may need to be modified and different
  17. #  values inserted.
  18. #
  19. #  Currently, the following variables appear in the code below.
  20. #
  21. #  ARCH   (machine architecture)
  22. #  AUTOMOUNT_MAP  (Path prefix map for automounting)
  23. #  DISPLAY   (DISPLAY variable for X Window System)
  24. #  LDPATH_PREFIX  (path(s) that appear at the start of
  25. #      LD_LIBRARY_PATH)
  26. #  LDPATH_SUFFIX  (path(s) that appear at the end of
  27. #      LD_LIBRARY_PATH)
  28. #  LD_LIBRARY_PATH  (load library path - the name
  29. #      LD_LIBRARY_PATH is platform dependent)
  30. #  MATLAB   (MATLAB root directory)
  31. #  MATLABPATH  (MATLAB search path)
  32. #  SHELL   (which shell to use for ! and unix
  33. #      command in MATLAB)
  34. #  TOOLBOX   (toolbox path)
  35. #      XAPPLRESDIR  (X Application Resource Directory)
  36. #  XKEYSYMDB  (X keysym Database file)
  37. #
  38. #  NOTE: Run matlab -n to get the values used to run MATLAB.
  39. #        MATLAB is NOT executed.
  40. #
  41. #  Additional variables are used in the MATLAB script, but
  42. #  to affect their behavior from this file requires an
  43. #  understanding first of how they are determined in the
  44. #  MATLAB script and then making code modifications to this
  45. #  file.
  46. #
  47. #  The strategy behind the use of this file is to keep
  48. #  the site wide changes in the matlab/bin/.matlab7rc.sh version
  49. #  and have the individual user start with a copy in their
  50. #  $HOME directory and modify it for their special circumstances.
  51. #
  52. #  IMPORTANT: Please understand that The MathWorks cannot
  53. #      anticipate every possible installation. If
  54. #      your situation does not fit into the current
  55. #      model of using this .matlab7rc.sh file then
  56. #      we would like to hear from you. Please
  57. #      contact The MathWorks Technical Support.
  58. #
  59. # note(s): 1. The default values are
  60. #
  61. #     ARCH   (machine architecture)
  62. #
  63. #   This is the machine architecture determined by
  64. #   the arch utility script.
  65. #
  66. #     AUTOMOUNT_MAP (Path prefix map for automounting)
  67. #
  68. #   This is set by install_matlab if possible. This is
  69. #   null unless you are running the automounter. This
  70. #   may have to be set manually if installation is done
  71. #   on a machine that doesn't have automouting, yet
  72. #   machines that execute MATLAB do.
  73. #
  74. #   For the case that the MATLAB directory is moved
  75. #   intact and no reinstallation is done either set the
  76. #   value of the AUTOMOUNT_MAP at the beginning of the
  77. #   script below or set it in the environment before
  78. #   MATLAB is called.
  79. #
  80. #     DISPLAY  (DISPLAY variable for X Window System)
  81. #
  82. #   This is set to "$DISPLAY" where DISPLAY is
  83. #          taken from the environment.
  84. #         
  85. #     LDPATH_PREFIX (path(s) that appear at the
  86. #      start of LD_LIBRARY_PATH)
  87. #
  88. #   Enclose in single quotes to defer evaluation
  89. #   to the MATLAB script.
  90. #
  91. #     LDPATH_SUFFIX (path(s) that appear at the
  92. #       end of LD_LIBRARY_PATH)
  93. #
  94. #   Enclose in single quotes to defer evaluation
  95. #   to the MATLAB script.
  96. #
  97. #     LD_LIBRARY_PATH (load library path - the name
  98. #      LD_LIBRARY_PATH is platform
  99. #      dependent)
  100. #
  101. #   TABLE:
  102. #
  103. #         platform          variable name
  104. #         --------          -------------
  105. #    sol2  LD_LIBRARY_PATH
  106. #    hpux  SHLIB_PATH
  107. #    glnx86  LD_LIBRARY_PATH
  108. #                               mac             DYLD_LIBRARY_PATH     
  109. #
  110. #     NOTE: The final load library path determined
  111. #    in the MATLAB startup script is composed
  112. #    of:
  113. #
  114. #       ------------------------------------------------------------
  115. #       LDPATH_PREFIX:<matlab_additions>:LD_LIBRARY_PATH:\
  116. #        <system_additions>:LDPATH_SUFFIX
  117. #       ------------------------------------------------------------
  118. #
  119. #    This means to add paths between:
  120. #    1. <matlab_additions> and LD_LIBRARY_PATH
  121. #       put them in front of LD_LIBRARY_PATH
  122. #    2. LD_LIBRARY_PATH and <system_additions>
  123. #       put them at the end of LD_LIBRARY_PATH
  124. #
  125. #     MATLAB  (MATLAB root directory)
  126. #
  127. #   This is set by install_matlab. The MATLAB script
  128. #   fixes this directory using the automount map
  129. #   specified by AUTOMOUNT_MAP if it is not null.
  130. #
  131. #          NOTE: The value of MATLAB called MATLABdefault is
  132. #         determined first by the MATLAB script before
  133. #         this file is sourced. If the value of MATLAB
  134. #         placed in this script by install_matlab is
  135. #         different than MATLABdefault then
  136. #         MATLABdefault is used as the value of MATLAB
  137. #         then the AUTOMOUNT_MAP value in the environment
  138. #         is used.
  139. #
  140. #     MATLABPATH  (MATLAB search path)
  141. #
  142. #   This is set to "$MATLABPATH" where MATLABPATH is
  143. #   taken from the environment.
  144. #
  145. #     SHELL  (which shell to use for ! or
  146. #      unix command in MATLAB)
  147. #
  148. #          This is set to "$SHELL" where SHELL is taken from
  149. #   the environment. If SHELL is empty or not defined
  150. #   then MATLAB uses /bin/sh internally.
  151. #
  152. #     TOOLBOX  (toolbox path)
  153. #
  154. #   This is set to "$TOOLBOX" where TOOLBOX is
  155. #   taken from the environment.
  156. #
  157. #         XAPPLRESDIR  (X Application Resource Directory)
  158. #
  159. #   This is set to '$MATLAB/X11/app-defaults'.
  160. #
  161. #          WATCH OUT! Those are single quotes. Because this
  162. #       will evaluated later!
  163. #
  164. #     XKEYSYMDB  (X keysym Database file)
  165. #
  166. #   This is set to '$MATLAB/X11/app-defaults/XKeysymDB'.
  167. #
  168. #          WATCH OUT! Those are single quotes. Because this
  169. #       will evaluated later!
  170. #
  171. # Copyright 1986-2004 The MathWorks, Inc.
  172. # $Revision: 1.1.8.3 $  $Date: 2004/04/25 21:30:49 $
  173. #----------------------------------------------------------------------------
  174. #
  175. # If you move the MATLAB tree, do not reinstall, and an automount map is
  176. # required then replace AUTOMOUNT_MAP by the map in the right hand side
  177. # of the next statement. Then AUTOMOUNT_MAP does not have to be set
  178. # in the environment before MATLAB is called.
  179. #
  180.     AUTOMOUNT_MAPenv="$AUTOMOUNT_MAP"
  181. #
  182. # Determine the arch.
  183. #
  184. #   -------------------------------------------------------------
  185. #
  186.     MATLAB_UTIL_DIR=
  187. #
  188. #   -------------------------------------------------------------
  189. #
  190.     if [ ! "$MATLAB_UTIL_DIR" ]; then
  191. MATLAB_UTIL_DIR=$MATLAB_UTIL_DIRdefault
  192.     fi
  193. #
  194. # arch.sh requires MATLAB - save temporarily
  195. #
  196.     MATLABsave="$MATLAB"
  197.     MATLAB="$MATLABdefault"
  198. #
  199.     . $MATLAB_UTIL_DIR/arch.sh
  200.     if [ "$ARCH" = "unknown" ]; then
  201. #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  202.     echo ''
  203.     echo '    Sorry! We could not determine the machine architecture for your'
  204.     echo '           host. Please contact:'
  205.     echo ''
  206.     echo '               MathWorks Technical Support'
  207.     echo ''
  208.     echo '           for further assistance.'
  209.     echo ''
  210. #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  211.         trap ""
  212.         exit 1
  213.     fi
  214.     MATLAB="$MATLABsave"
  215. #
  216. # IMPORTANT! Modify ONLY if you don't like the defaults after running
  217. #     MATLAB.
  218. #
  219.     case "$ARCH" in
  220. sol2)
  221. #----------------------------------------------------------------------------
  222. # MATLAB and AUTOMOUNT_MAP originally set by install_matlab
  223. #
  224.     MATLAB=|>MATLAB<|
  225.     AUTOMOUNT_MAP=|>AUTOMOUNT_MAP<|
  226. #
  227.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  228.  MATLAB=$MATLABdefault
  229.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  230.     fi
  231. #
  232.     DISPLAY="$DISPLAY"
  233.     ARCH="$ARCH"
  234.     TOOLBOX="$TOOLBOX"
  235.     MATLABPATH="$MATLABPATH"
  236.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  237.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  238.     SHELL="$SHELL"
  239.     LDPATH_PREFIX=''
  240. #
  241. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  242. # line.
  243. #
  244. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  245. #
  246.     LDPATH_SUFFIX=''
  247. #
  248.     if [ "$LD_LIBRARY_PATH" != "" ]; then
  249.                 LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  250.     else
  251.                 LD_LIBRARY_PATH=
  252.     fi
  253. #----------------------------------------------------------------------------
  254.     ;;
  255. hpux)
  256. #----------------------------------------------------------------------------
  257. # MATLAB and AUTOMOUNT_MAP originally set by install_matlab
  258. #
  259.     MATLAB=|>MATLAB<|
  260.     AUTOMOUNT_MAP=|>AUTOMOUNT_MAP<|
  261. #
  262.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  263.  MATLAB=$MATLABdefault
  264.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  265.     fi
  266. #
  267.     DISPLAY="$DISPLAY"
  268.     ARCH="$ARCH"
  269.     TOOLBOX="$TOOLBOX"
  270.     MATLABPATH="$MATLABPATH"
  271.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  272.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  273.     SHELL="$SHELL"
  274.     LDPATH_PREFIX=''
  275. #
  276. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  277. # line.
  278. #
  279. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  280. #
  281.     LDPATH_SUFFIX=''
  282. #
  283.     if [ "$SHLIB_PATH" != "" ]; then
  284.                 SHLIB_PATH=$SHLIB_PATH
  285.     else
  286.                 SHLIB_PATH=
  287.     fi
  288. #----------------------------------------------------------------------------
  289.     ;;
  290. glnx86)
  291. #----------------------------------------------------------------------------
  292. # MATLAB and AUTOMOUNT_MAP originally set by install_matlab
  293. #
  294.     MATLAB=|>MATLAB<|
  295.     AUTOMOUNT_MAP=|>AUTOMOUNT_MAP<|
  296. #
  297.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  298.  MATLAB=$MATLABdefault
  299.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  300.     fi
  301. #
  302.     DISPLAY="$DISPLAY"
  303.     ARCH="$ARCH"
  304.     TOOLBOX="$TOOLBOX"
  305.     MATLABPATH="$MATLABPATH"
  306.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  307.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  308.     SHELL="$SHELL"
  309.     LDPATH_PREFIX=''
  310. #
  311. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  312. # line.
  313. #
  314. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  315. #
  316.     LDPATH_SUFFIX=''
  317. #
  318.     if [ "$LD_LIBRARY_PATH" != "" ]; then
  319.                 LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  320.     else
  321.                 LD_LIBRARY_PATH=
  322.     fi
  323. #----------------------------------------------------------------------------
  324.     ;;
  325. glnxi64)
  326. #----------------------------------------------------------------------------
  327. # MATLAB and AUTOMOUNT_MAP originally set by install_matlab
  328. #
  329.     MATLAB=|>MATLAB<|
  330.     AUTOMOUNT_MAP=|>AUTOMOUNT_MAP<|
  331. #
  332.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  333.  MATLAB=$MATLABdefault
  334.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  335.     fi
  336. #
  337.     DISPLAY="$DISPLAY"
  338.     ARCH="$ARCH"
  339.     TOOLBOX="$TOOLBOX"
  340.     MATLABPATH="$MATLABPATH"
  341.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  342.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  343.     SHELL="$SHELL"
  344.     LDPATH_PREFIX=''
  345. #
  346. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  347. # line.
  348. #
  349. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  350. #
  351.     LDPATH_SUFFIX=''
  352. #
  353.     if [ "$LD_LIBRARY_PATH" != "" ]; then
  354.                 LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  355.     else
  356.                 LD_LIBRARY_PATH=
  357.     fi
  358. #----------------------------------------------------------------------------
  359.     ;;
  360. mac)
  361. #----------------------------------------------------------------------------
  362. # MATLAB originally set by install_matlab
  363. #
  364.     MATLAB=|>MATLAB<|
  365.     AUTOMOUNT_MAP='/private ->'
  366. #
  367.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  368.  MATLAB=$MATLABdefault
  369.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  370.     fi
  371. #
  372.     DISPLAY="$DISPLAY"
  373.     ARCH="$ARCH"
  374.     TOOLBOX="$TOOLBOX"
  375.     MATLABPATH="$MATLABPATH"
  376.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  377.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  378.     SHELL="$SHELL"
  379.     LDPATH_PREFIX=''
  380. #
  381. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  382. # line.
  383. #
  384. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  385. #
  386.     LDPATH_SUFFIX=''
  387. #
  388.     if [ "$DYLD_LIBRARY_PATH" != "" ]; then
  389.                 DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH
  390.     else
  391.                 DYLD_LIBRARY_PATH=
  392.     fi
  393. #----------------------------------------------------------------------------
  394.     ;;
  395. *)
  396. #----------------------------------------------------------------------------
  397. # MATLAB and AUTOMOUNT_MAP originally set by install_matlab
  398. #
  399.     MATLAB=|>MATLAB<|
  400.     AUTOMOUNT_MAP=|>AUTOMOUNT_MAP<|
  401. #
  402.     if [ "$MATLAB" != "$MATLABdefault" ]; then
  403.  MATLAB=$MATLABdefault
  404.         AUTOMOUNT_MAP=$AUTOMOUNT_MAPenv
  405.     fi
  406. #
  407.     DISPLAY="$DISPLAY"
  408.     ARCH="$ARCH"
  409.     TOOLBOX="$TOOLBOX"
  410.     MATLABPATH="$MATLABPATH"
  411.     XAPPLRESDIR='$MATLAB/X11/app-defaults'
  412.     XKEYSYMDB='$MATLAB/X11/app-defaults/XKeysymDB'
  413.     SHELL="$SHELL"
  414.     LDPATH_PREFIX=''
  415. #
  416. # To always use the OpenGL libraries shipped with MATLAB uncomment the next
  417. # line.
  418. #
  419. #           LDPATH_PREFIX='$MATLAB/sys/opengl/lib/$ARCH'
  420. #
  421.     LDPATH_SUFFIX=''
  422. #
  423.     if [ "$LD_LIBRARY_PATH" != "" ]; then
  424.                 LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  425.     else
  426.                 LD_LIBRARY_PATH=
  427.     fi
  428. #----------------------------------------------------------------------------
  429.     ;;
  430.     esac


 
 
SI vous avez une idée, merci d'avance, c'est TRES IMPORTANT !!

mood
Publicité
Posté le 02-04-2007 à 21:44:48  profilanswer
 

n°900191
guepe
J'ai du noir sur la truffe ?
Posté le 04-04-2007 à 01:30:11  profilanswer
 

Matlab utilise la JRE... et apparemment il ne l'a pas trouvée ? Tu l'as installée?
Parce qu'il est possible que ton message d'erreur vienne de cela. Tu as essayé de faire ce qui est indiqué, matlab -n ?
Peut etre que le problème se situe la ?


---------------
Un blog qu'il est bien
n°900279
floppys
Posté le 04-04-2007 à 11:33:29  profilanswer
 

J'ai installé la JRE depuis le site de SUN, mais toujours pas d'amélioration il semble toujours pas la reconnaitre ! (même message d'erreur au lancement de ./matlab)
 
EN revance matlab -n donne :  
 

Code :
  1. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: syntax error near unexpected
  2. token `|'
  3. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: `           MATLAB=|>MATLAB<
  4. |'
  5. ------------------------------------------------------------------------
  6. ->      (.matlab7rc.sh) sourced from directory (DIR = .)
  7. ->      DIR = /usr/local/matlab7/bin/scripts
  8. ------------------------------------------------------------------------
  9.         a = argument  e = environment  r = rcfile  s = script
  10. ------------------------------------------------------------------------
  11. ->  s   MATLAB              = /usr/local/matlab7/bin
  12. ->  s   AUTOMOUNT_MAP       =
  13. ->  e   DISPLAY             = :0.0
  14. ->  r   ARCH                = glnx86
  15. ->  s   TOOLBOX             = /usr/local/matlab7/bin/toolbox
  16. ->  s   XAPPLRESDIR         = /usr/local/matlab7/bin/X11/app-defaults
  17. ->  s   XKEYSYMDB           = /usr/local/matlab7/bin/X11/app-defaults/XKeysymDB
  18. ->  e   MAX_OPEN_FILES      = 1024
  19. ->  s   _JVM_THREADS_TYPE   =
  20. ->  e   MATLAB_JAVA         =
  21. ->  s   MATLAB_MEM_MGR      =
  22. ->  s   MATLAB_DEBUG        =
  23. ->  rs  LD_LIBRARY_PATH     = /usr/local/matlab7/bin/sys/os/glnx86:/usr/local/matlab
  24. 7/bin/bin/glnx86:/usr/local/matlab7/bin/extern/lib/glnx86:/lib/i386/native_threads:/
  25. lib/i386:/usr/local/matlab7/bin/sys/opengl/lib/glnx86
  26. ->  a   arglist             =
  27. ->  e   SHELL               = /bin/bash
  28. ->  e   PATH                = /sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/loc
  29. al/bin:/usr/games:/usr/NX/bin
  30. ---------------------------------------------------------------------------
  31. Warning: Cannot locate Java Runtime Environment (JRE) . . .
  32.          1. Either a correct JRE was not available for redistribution when
  33.             this release was shipped, in which case you should refer to the
  34.             Release Notes for additional information about how to get it.
  35.          2. Or you have tried to use the MATLAB_JAVA environment variable
  36.             to specify an alternate JRE, but MATLAB cannot find it.  Check
  37.             the value of MATLAB_JAVA above and fix accordingly.
  38. ---------------------------------------------------------------------------
  39. ->  s   MATLABPATH          = (initial version)
  40.         /usr/local/matlab7/bin/toolbox/local
  41. ->      $MATLAB/toolbox/local/pathdef.m -
  42. |-----------------------------------------------------------------------
  43.     Warning: $MATLAB/toolbox/local/pathdef.m not found . . .
  44. |-----------------------------------------------------------------------
  45. ------------------------------------------------------------------------


 
 
Pour info, si je lance matlab -nojvm (sans le support de Java) j'ai quand même l'erreur suivante qui persiste :
 

Code :
  1. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: syntax error near unexpected token `|'
  2. /usr/local/matlab7/bin/scripts/.matlab7rc.sh: line 224: `           MATLAB=|>MATLAB<|'
  3.     matlab: No MATLAB bin directory for this machine architecture.
  4.            ARCH = glnx86


 
 
Je m'en sors pas :'( bouuuh lol, si vous avez une idée !! Merci bcp.

n°900289
memaster
ki a volé mon 62?
Posté le 04-04-2007 à 12:11:47  profilanswer
 

ça me parait simple pourtant
va voir à la ligne 224 de ton .matlab7rc.sh
il y a surement une couille dans la syntaxe d'une variable, tu corriges et voila ;)


Message édité par memaster le 04-04-2007 à 12:11:59
n°900301
valenna
Posté le 04-04-2007 à 13:15:05  profilanswer
 

Pourrais tu éditer le titre de ton topic ? Car "Pb" ne veut rien dire et le SMS c'est pas apprécié ici.

n°900444
floppys
Posté le 04-04-2007 à 18:54:40  profilanswer
 

Oui je me doutais qu'il y avait un problème de syntaxe, le problème est que je ne programme pas dans ce langage donc je n'y comprends pas grand chsoe & je ne trouve pas la faute !!
 
 
 
PS Valenna: Pb n'est pas du SMS c'est une abréviation passée dans le langage courant.  Merci tout de même pour ton post completely useless  !

n°900773
enfoiro
a nickname is just a nickname
Posté le 05-04-2007 à 16:04:31  profilanswer
 

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Linux et OS Alternatifs
  Logiciels

  pb lancement matlab7 ???

 

Sujets relatifs
probleme au lancement du live cd de mandrivaErreur lancement Shorewall
Lancement automatique script shell sur MinGW WindowsConnaitre date de lancement d'un processus
Probleme de lancement d'un logicielQuestion rapide : lancement automatique de beryl
[Debian] Problème de lancement du serveur XProbleme lancement Quake3 sous Debian testing
KDE et lancement du .profile sur Red Hat AS 3Lancement installation ubuntu depuis DOS
Plus de sujets relatifs à : pb lancement matlab7 ???


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR