|
@@ -98,20 +98,29 @@ class MapCalcFrame(wx.Frame):
|
|
|
'median(x,y[,z...])': 'median( , )',
|
|
|
'min(x,y[,z...])': 'min( , )',
|
|
|
'mode(x,y[,z...])': 'mode( , )',
|
|
|
+ 'nmax(x,y[,z...])': 'nmax( , )',
|
|
|
+ 'nmedian(x,y[,z...])': 'nmedian( , )',
|
|
|
+ 'nmin(x,y[,z...])': 'nmin( , )',
|
|
|
+ 'nmode(x,y[,z...])': 'nmode( , )',
|
|
|
'not(x)': 'not()',
|
|
|
'pow(x,y)': 'pow( , )',
|
|
|
'rand(a,b)': 'rand( , )',
|
|
|
'round(x)': 'round()',
|
|
|
+ 'round(x,y)': 'round( , )',
|
|
|
+ 'round(x,y,z)': 'round( , , )',
|
|
|
'sin(x)': 'sin()',
|
|
|
'sqrt(x)': 'sqrt()',
|
|
|
'tan(x)': 'tan()',
|
|
|
'xor(x,y)': 'xor( , )',
|
|
|
'row()': 'row()',
|
|
|
'col()': 'col()',
|
|
|
+ 'nrows()': 'nrows()',
|
|
|
+ 'ncols()': 'ncols()',
|
|
|
'x()': 'x()',
|
|
|
'y()': 'y()',
|
|
|
'ewres()': 'ewres()',
|
|
|
'nsres()': 'nsres()',
|
|
|
+ 'area()': 'area()',
|
|
|
'null()': 'null()'
|
|
|
}
|
|
|
|