Special Stuff
Maple Nuggets

 

  • Length of a list:
     
    nops([a]) or numelems(a)
     
  • To add elements to a list:
     
    A:=[op(A),element] . For example:

     
    A:=[];
    A:=[op(A),3];
    A;
          [3]

     
  • To check for Real:
     
    type(x,'realcons')
     

Special Stuff Index

Main Index

Last updated: 06/05/2014 SS/MUO