Changeset 512 for trunk/src/plot_field.m
- Timestamp:
- Aug 3, 2012, 2:50:24 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plot_field.m
r511 r512 6 6 % 2D vector fields are represented by arrows, 2D scalar fields by grey scale images or contour plots, 1D fields are represented by usual plot with (abscissa, ordinate). 7 7 % The input field structure is first tested by check_field_structure.m, 8 % then split into blocks of related variables by find_field_ indices.m.8 % then split into blocks of related variables by find_field_cells.m. 9 9 % The dimensionality of each block is obtained by this function 10 10 % considering the presence of variables with the attribute .Role='coord_x' … … 117 117 end 118 118 % check the cells of fields : 119 [CellVarIndex,NbDim,VarType,errormsg]=find_field_ indices(Data);119 [CellVarIndex,NbDim,VarType,errormsg]=find_field_cells(Data); 120 120 if ~isempty(errormsg) 121 msgbox_uvmat('ERROR',['input of plot_field/find_field_ indices: ' errormsg]);121 msgbox_uvmat('ERROR',['input of plot_field/find_field_cells: ' errormsg]); 122 122 return 123 123 end
Note: See TracChangeset
for help on using the changeset viewer.