Ignore:
Timestamp:
07/07/06 11:57:27 (18 years ago)
Author:
navarro
Message:

english and nicer header (1)

Location:
trunk/SRC/Matrix
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Matrix/congridseb.pro

    r132 r133  
    33;------------------------------------------------------------ 
    44;+ 
    5 ; NAME:CONGRIDSEB 
    6 ; 
    7 ; PURPOSE:meme chose que congrid mais qui marche ... 
    8 ;        cf par ex: 
     5; @file_comment  
     6; Like congrid but here, it works... 
     7;        example: 
    98;IDL> print, congrid([[1,2,3,4],[5,6,7,8]],12,4) 
    109;       1 1 1 2 2 2 3 3 3 3 4 4 
     
    2322;       5 5 5 6 6 6 7 7 7 8 8 8 
    2423; 
    25 ; CATEGORY:bidouille matrices 
     24; @categories utilities 
    2625; 
    27 ; CALLING SEQUENCE:res=congridseb(tableau,x[,y]) 
     26; @param tableau {in}{required} A table 1 ou 2d 
    2827; 
    29 ; INPUTS:tableau:un tableau 1 ou 2d 
    30 ;        x:dim en x du resultat doit etre un multiple de dim en x de tableau 
    31 ;        y:dim en y du resultat doit etre un multiple de dim en y de tableau 
     28; @param x {in}{required} dimension in x of the result which must be  
     29;                         a multiple of the dimension in x of the table. 
    3230; 
    33 ; KEYWORD PARAMETERS: 
     31; @param y {in}{required} dimension in y of the result which must be  
     32;                         a multiple of the dimension in y of the table. 
    3433; 
    35 ; OUTPUTS:res un tableau de dim x * y 
     34; @returns res a table dim x * y 
    3635; 
    37 ; COMMON BLOCKS: 
    38 ; 
    39 ; SIDE EFFECTS: 
    40 ; 
    41 ; RESTRICTIONS: 
    42 ; 
    43 ; EXAMPLE: 
    44 ; 
    45 ; MODIFICATION HISTORY: Sebastien Masson (smasson@lodyc.jussieu.fr) 
     36; @history Sebastien Masson (smasson@lodyc.jussieu.fr) 
    4637;                      20/3/98 
    4738;                      18/6/1999 supression d''une horrible boucle 
     39; 
     40; @version $Id$ 
     41; 
    4842;- 
    4943;------------------------------------------------------------ 
Note: See TracChangeset for help on using the changeset viewer.