Changeset 1110
- Timestamp:
- 06/25/09 17:50:05 (16 years ago)
- Location:
- issm/trunk/src/m/classes/public/plot
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/plot/plot_manager.m
r346 r1110 84 84 plot_segmentonneumann(md,options_structure,width,i,data) 85 85 return 86 case 'segments' 87 plot_segments(md,options_structure,width,i,data) 88 return 86 89 case {'strainrate_tensor','strainrate','strainrate_principal','strainrate_principalaxis1','strainrate_principalaxis2','strainrate_principalaxis3',... 87 90 'stress_tensor','stress','stress_principal','stress_principalaxis1','stress_principalaxis2','stress_principalaxis3',... -
issm/trunk/src/m/classes/public/plot/plot_qmuimportancefactors.m
r345 r1110 35 35 end 36 36 responsefunctions=responsefunctions(found); 37 nfun=size(responsefunctions. desvar,1);37 nfun=size(responsefunctions.var,1); 38 38 39 39 %Now recover response to the correct design variable … … 41 41 count=0; 42 42 for i=1:nfun, 43 desvar=responsefunctions.desvar{i};44 if strncmpi( desvar,descriptor,descriptorlength),43 var=responsefunctions.var{i}; 44 if strncmpi(var,descriptor,descriptorlength), 45 45 count=count+1; 46 46 importancefactors(count)=responsefunctions.impfac(i);
Note:
See TracChangeset
for help on using the changeset viewer.