1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
//================================
//
// Copyright INRIA 2005
// Scilab team
// Date : December 8th 2005
//
//================================
function %helps=initial_help_chapters(language)
[lhs,rhs]=argn(0)
if rhs==0 then
language="eng"
else
if rhs<>1 then error(39), end
end
dirs=["programming";"graphics";"elementary";"fileio";"functions";"strings";
"gui";"utilities";"linear";"polynomials";"control";"robust";
"nonlinear";"signal";"arma";"metanet";"scicos";"sound";"translation";
"tdcs";"statistics";"dcd";"identification";"mtlb";
"sparse";"pvm";"tksci";"java"];
sep="/";
if MSDOS then sep="\",end
%helps=sep+"man"+sep+language+sep+dirs;
select language
case "eng"
%helps=[%helps,..
["Programming";"Graphics Library";"Elementary Functions";
"Input/Output Functions";"Handling of functions and libraries";
"Character string manipulations";"GUI and Dialogs";"Utilities";
"Linear Algebra";"Polynomial calculations";
"General System and Control";"Robust control toolbox";
"Optimization and simulation";
"Signal Processing toolbox";
"Arma modelisation and simulation toolbox";
"Metanet: graph and network toolbox";
"Scicos: Bloc diagram editor and simulator";"Sound file handling";
"Language or data translations";"TdCs";
"Statistic basics";
"Cumulative Distribution Functions; Inverses, grand";
"Identification";
"Matlab to Scilab conversion tips";
"Sparse solvers";
"PVM parallel toolbox";
"TCL/Tk interface";"Java Interface"]];
case "fr"
%helps=[%helps,..
["Programmation";"Librairie graphique";"Fonctions lmentaires";
"Entres-sorties";"Manipulation des fonctions et des librairies";
"Manipulations de chanes de caractres";"IHM et Dialogues";"Utilitaires";
"Algbre linaire";"Calculs sur les polynmes";
"Contrle et thorie des systmes";"Contrle robuste";
"Optimisation et simulation";
"Traitement du signal";"Modlisation et simulation ARMA";
"Metanet : graphes et rseaux";
"Scicos : diteur et simulateur de blocs diagrammes";
"Manipulation de fichiers sons";
"Gnration de code, traduction de donnes";
"TdCs";
"Statistiques";
"Fonctions de distributions statistiques";
"Identification";
"Aide la conversion Matlab vers Scilab";
"Solveurs creux";
"Calcul parallle avec PVM";
"Interface TCL/Tk";"Interface Java"]];
end
%helps=[SCI+%helps(:,1),%helps(:,2)];
endfunction
|