Changeset a09c2a0 in git for Singular/LIB/control.lib


Ignore:
Timestamp:
Apr 29, 2005, 4:53:50 PM (18 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
509ea41cac9ea87db2965ec417e74db861c056d1
Parents:
cf232093a07ed9ca8ddb2d5ede06a133c497763f
Message:
*levandov: doc changes and fixes


git-svn-id: file:///usr/local/Singular/svn/trunk@7951 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/control.lib

    rcf23209 ra09c2a0  
    1 version="$Id: control.lib,v 1.27 2005-04-03 20:31:37 plural Exp $";
    2 category="Applications";
     1version="$Id: control.lib,v 1.28 2005-04-29 14:53:50 levandov Exp $";
     2category="System and Control Theory";
    33info="
    44LIBRARY:  control.lib Procedures for System and Control Theory
     
    3636@* def A = exAntenna(); setring A;
    3737@* Thus A will become a basering from the example with the predefined module R (transposed), corresponding to the system. After that you can just type in
    38 @* control(R); //respectively autonom(R);
     38@* control(R); // respectively autonom(R);
    3939and check the result.
    4040
     
    8888@*          Variables:   string with names of variables separated by commas(e.g. \"x,y,z\"),
    8989@*          Parameters: string of parameters in the ring separated by commas(e.g. \"a,b,c\"),
    90 @*          Ordering:   string with name of ordering (by default, the ordering \"dp,C\" is used)
     90@*          Ordering:   string with name of ordering (by default, the ordering (dp,C) is used)
    9191PURPOSE: define the ring easily
    9292RETURN:  no return value
     
    123123  string p="q,p";
    124124  string Ord ="c,lp";
    125  
     125  //----------------------------------
    126126  declare("Ring_1",v);
    127127  print(nameof(basering));
    128128  print(basering);
    129  
     129  //----------------------------------
    130130  declare("Ring_2",v,p);
    131131  print(basering);
    132132  print(nameof(basering));
    133  
     133  //----------------------------------
    134134  declare("Ring_3",v,p,Ord);
    135135  print(basering);
    136136  print(nameof(basering));
    137  
     137  //----------------------------------
    138138  declare("Ring_4",v,"",Ord);
    139139  print(basering);
    140140  print(nameof(basering));
    141  
     141  //----------------------------------
    142142  declare("Ring_5",v," ",Ord);
    143143  print(basering);
     
    145145};
    146146//
    147 //maybe reasonable to add this in declare
     147// maybe reasonable to add this in declare
    148148//
    149149//  print("Please enter your representation matrix in the following form:
Note: See TracChangeset for help on using the changeset viewer.