Ignore:
Timestamp:
06/29/06 16:59:33 (18 years ago)
Author:
pinsard
Message:

correction of some *.pro using aspell list; introduction of default idldoc syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Interpolation/fromirr.pro

    r118 r121  
    22; 
    33; @file_comments interpolate data from an irregular 2D grid to any 2D grid. 
    4 ;   Only 1 metod available: bilinear 
     4;   Only 1 metod available = bilinear 
    55;    
    66; @categories interpolation 
    77; 
    8 ; @examples   
    9 ; dataout = fromirr(method, datain [, lonin, latin, mskin, lonout, latout, mskout]) 
    10 ; 
    11 ;    @param method: {in}{required} a string defining the interpolation method. must be 'bilinear' 
    12 ;    @param datain: {in}{required} a 2D array the input data to interpolate 
    13 ;    @param lonin: {in}{required} a 2D array defining the longitude of the input data 
    14 ;    @param latin: {in}{required} a 2D array defining the latitude of the input data. 
    15 ;    @param mskin: {in}{required} a 2D array, the land-sea mask of the input data (1 on ocean, 0 on land) 
    16 ;    @param lonout: {in}{required} 1D or 2D array defining the longitude of the output data. 
    17 ;    @param latout: {in}{required} 1D or 2D array defining the latitude of the output data. 
    18 ;    @param mskout: {in}{required} a 2D array, the land-sea mask of the ouput data (1 on ocean, 0 on land) 
     8;    @param method {in}{required} a string defining the interpolation method. must be 'bilinear' 
     9;    @param datain {in}{required} a 2D array the input data to interpolate 
     10;    @param lonin {in}{optional} a 2D array defining the longitude of the input data 
     11;    @param latin {in}{optional} a 2D array defining the latitude of the input data. 
     12;    @param mskin {in}{optional} a 2D array, the land-sea mask of the input data (1 on ocean, 0 on land) 
     13;    @param lonout {in}{optional} 1D or 2D array defining the longitude of the output data. 
     14;    @param latout {in}{optional} 1D or 2D array defining the latitude of the output data. 
     15;    @param mskout {in}{required} a 2D array, the land-sea mask of the ouput data (1 on ocean, 0 on land) 
    1916; 
    2017; @keyword WEIG (see ADDR) 
     
    2825;     speed-up the interpolation! In that case, lonin, latin, lonout and latout are not necessary. 
    2926; 
    30 ; @returns 2D array: the interpolated data 
     27; @returns 2D array the interpolated data 
    3128; 
    3229; @restrictions We supposed the data are located on a sphere, with a periodicity along 
Note: See TracChangeset for help on using the changeset viewer.