Changeset 963
- Timestamp:
- 06/12/09 15:32:26 (16 years ago)
- Location:
- issm/trunk/src/m/solutions
- Files:
-
- 5 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/solutions/cielo/SpawnCore.m
r959 r963 53 53 end 54 54 55 %process results 56 results=processresults(models,results); 57 55 58 %now process the results to get response function values 56 59 responses=zeros(numel(responsedescriptors),1); … … 59 62 responses(i)=qmuresponse(models,results,descriptor); 60 63 end 61 -
issm/trunk/src/m/solutions/cielo/diagnostic.m
r959 r963 36 36 %launch core of diagnostic solution. 37 37 results=diagnostic_core(models,inputs); 38 39 %process results 40 md.results.diagnostic=processresults(models,results); 38 41 else 39 42 %launch dakota driver for diagnostic core solution … … 41 44 end 42 45 43 md.results.diagnostic=processresults(models,results);44 45 46 %stop timing 46 47 t2=clock; -
issm/trunk/src/m/solutions/dakota/dakota_out_parse.m
r646 r963 183 183 % draw box plot 184 184 185 figure186 subplot(2,1,1)187 plot_boxplot(dresp);185 %figure 186 %subplot(2,1,1) 187 %plot_boxplot(dresp); 188 188 189 189 % draw normal probability plot 190 190 191 subplot(2,1,2)192 plot_normplot(dresp);191 %subplot(2,1,2) 192 %plot_normplot(dresp); 193 193 194 194 end -
issm/trunk/src/m/solutions/dakota/qmumarshall.m
r780 r963 71 71 %write npart to disk 72 72 WriteData(fid,md.npart,'Integer','npart'); 73 74 %write ivar and iresp to disk 75 WriteData(fid,md.ivar,'Integer','ivar'); 76 WriteData(fid,md.iresp,'Integer','iresp'); 73 77 74 78 %close file
Note:
See TracChangeset
for help on using the changeset viewer.