-
Notifications
You must be signed in to change notification settings - Fork 1
/
parsave.m
16 lines (14 loc) · 969 Bytes
/
parsave.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function parsave(fname, fivYrAgeGrpsOn , tVec , popVec , newHiv ,...
newHpvVax , newImmHpvVax , newHpvNonVax , newImmHpvNonVax , ...
hivDeaths , deaths , ccDeath_treat , ccDeath_untreat , ...
newCC , menCirc , vaxdLmtd , vaxdSchool , vaxdCU , newScreen , ...
artDist , artDistList , artTreatTracker , artDiscont , ...
currYear , lastYear , vaxRate , vaxEff , popLast , pathModifier , ccSymp, ccTreat)
savDir = [pwd , '/HHCoM_Results/' , pathModifier, '/'];
save(fullfile(savDir , fname) , 'fivYrAgeGrpsOn' , 'tVec' , 'popVec' , 'newHiv' ,...
'newHpvVax' , 'newImmHpvVax' , 'newHpvNonVax' , 'newImmHpvNonVax' , ...
'hivDeaths' , 'deaths' , 'ccDeath_treat' , 'ccDeath_untreat' , ...
'newCC' , 'menCirc' , 'vaxdLmtd' , 'vaxdSchool' , 'vaxdCU' , 'newScreen' , ...
'artDist' , 'artDistList' , 'artTreatTracker' , 'artDiscont' , ...
'currYear' , 'lastYear' , 'vaxRate' , 'vaxEff' , 'popLast' , 'ccSymp' , 'ccTreat' , '-v7.3')
end