- Timestamp:
- 08/14/12 16:58:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/modules/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp ¶
r12636 r13036 37 37 /*Some checks on arguments: */ 38 38 if ((M<2) || (N<2) || (nods<=0)){ 39 _error 2_("nothing to be done according to the dimensions of input matrices and vectors.");39 _error_("nothing to be done according to the dimensions of input matrices and vectors."); 40 40 } 41 41 if (x_in[1]-x_in[0]<0){ 42 _error 2_("x coordinate vector should be increasing.\n use Matlab's command x=flipud(x), also flip the data matrix data=fliplr(data)");42 _error_("x coordinate vector should be increasing.\n use Matlab's command x=flipud(x), also flip the data matrix data=fliplr(data)"); 43 43 } 44 44 if (y_in[1]-y_in[0]<0){ 45 _error 2_("y coordinate vector should be increasing.\n use Matlab's command y=flipud(y), also flip the data matrix data=flipud(data)");45 _error_("y coordinate vector should be increasing.\n use Matlab's command y=flipud(y), also flip the data matrix data=flipud(data)"); 46 46 } 47 47 … … 69 69 } 70 70 else{ 71 _error 2_("x and y vectors length should be 1 or 0 more than data number of rows.");71 _error_("x and y vectors length should be 1 or 0 more than data number of rows."); 72 72 } 73 73
Note:
See TracChangeset
for help on using the changeset viewer.