-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmp_makeall.m
More file actions
28 lines (25 loc) · 928 Bytes
/
mp_makeall.m
File metadata and controls
28 lines (25 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
% converts all double variables to mp objects
% put variable names as cell strings into mp_dontmakeall if you don't want them converted
% e.g. mp_dontmakeall={'C1','C2'};
% if you don't want C1 and C2 converted to mp objects
tempVarList=whos;
if exist('default_precision')~=1
default_precision=mp_Defaults(mp(0));
end
for tempLoopVar=1:length(tempVarList)
if strcmp(tempVarList(tempLoopVar).class,'double')
tempGoon=1;
if exist('mp_dontmakeall')
if any(strcmp(tempVarList(tempLoopVar).name,mp_dontmakeall))
tempGoon=0;
end
end
if tempGoon
if ~strcmp(tempVarList(tempLoopVar).name,'default_precision')
eval([tempVarList(tempLoopVar).name,'=mp(',tempVarList(tempLoopVar).name,...
',',num2str(default_precision),');']);
end
end
end
end
clear tempVarList tempLoopVar tempGoon