Changeset 19336 for issm/trunk-jpl/src/m/plot
- Timestamp:
- 05/01/15 12:36:45 (10 years ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/plot_tensor_components.m
r17687 r19336 69 69 %apply options 70 70 if ismember('_',type) %user plotet stress_tensor 71 strings=strsplit (type,'_');71 strings=strsplit_strict(type,'_'); 72 72 string=strings{1}; 73 73 else %default plot: user requested stress -
issm/trunk-jpl/src/m/plot/plot_tensor_principal.m
r17686 r19336 67 67 %apply options 68 68 if ismember('_',type) %user plotet stress_tensor 69 strings=strsplit (type,'_');69 strings=strsplit_strict(type,'_'); 70 70 string=strings{1}; 71 71 else %default plot: user requested stress -
issm/trunk-jpl/src/m/plot/plot_tensor_principalaxis.m
r19083 r19336 89 89 90 90 %apply options 91 strings=strsplit (type,'_');91 strings=strsplit_strict(type,'_'); 92 92 string=strings{1}; 93 93 options=addfielddefault(options,'title',[upper(string(1)) string(2:end) ' principal axis ' type(end)]); -
issm/trunk-jpl/src/m/plot/plot_vstime.m
r17718 r19336 6 6 %getting the variable structure 7 7 datastruct = getfieldvalue(options,'Input'); 8 structnames = strsplit (datastruct,'.');8 structnames = strsplit_strict(datastruct,'.'); 9 9 10 10 %getting the position of the to be ploted point
Note:
See TracChangeset
for help on using the changeset viewer.