Changeset 260
- Timestamp:
- Jul 9, 2011, 10:10:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/civ.m
r257 r260 1591 1591 if isfield(sparam,'CivBin') 1592 1592 CivBin=sparam.CivBin; 1593 if ~exist(CivBin,'file') || ~isempty(which(CivBin))% if path defined as relative to uvmat1593 if ~exist(CivBin,'file') || isempty(which(CivBin))% if path defined as relative to uvmat 1594 1594 sparam.CivBin=fullfile(path_UVMAT,CivBin); 1595 1595 if ~exist(sparam.CivBin,'file') … … 1602 1602 if isfield(sparam,'Civ1Bin') 1603 1603 Civ1Bin=sparam.Civ1Bin; 1604 if ~exist(Civ1Bin,'file')|| ~isempty(which(Civ1Bin))% if path defined as relative to uvmat1604 if ~exist(Civ1Bin,'file')||isempty(which(Civ1Bin))% if path defined as relative to uvmat 1605 1605 sparam.Civ1Bin=fullfile(path_UVMAT,Civ1Bin); 1606 1606 if ~exist(sparam.Civ1Bin,'file') … … 1612 1612 if isfield(sparam,'Civ2Bin') 1613 1613 Civ2Bin=sparam.Civ2Bin; 1614 if ~exist(Civ2Bin,'file')|| ~isempty(which(Civ2Bin))% if path defined as relative to uvmat1614 if ~exist(Civ2Bin,'file')||isempty(which(Civ2Bin))% if path defined as relative to uvmat 1615 1615 sparam.Civ2Bin=fullfile(path_UVMAT,Civ2Bin); 1616 1616 if ~exist(sparam.Civ2Bin,'file') … … 1621 1621 end 1622 1622 if isfield(sparam,'PatchBin') 1623 if ~exist(sparam.PatchBin,'file')|| ~isempty(which(sparam.PatchBin))% if path defined as relative to uvmat1623 if ~exist(sparam.PatchBin,'file')||isempty(which(sparam.PatchBin))% if path defined as relative to uvmat 1624 1624 sparam.PatchBin=fullfile(path_UVMAT,sparam.PatchBin); 1625 1625 end 1626 1626 end 1627 1627 if isfield(sparam,'FixBin') 1628 if ~exist(sparam.FixBin,'file')|| ~isempty(which(sparam.FixBin))% if path defined as relative to uvmat1628 if ~exist(sparam.FixBin,'file')||isempty(which(sparam.FixBin))% if path defined as relative to uvmat 1629 1629 sparam.FixBin=fullfile(path_UVMAT,sparam.FixBin); 1630 1630 end
Note: See TracChangeset
for help on using the changeset viewer.