📄 cg_can_to_mom.m
字号:
function pot = cg_can_to_mom(pot)
% CG_CAN_TO_MOM Convert a CG potential from canonical to moment form, if necessary.
% pot = cg_can_to_mom(pot)
if pot.subtype ~= 'm'
for i=1:pot.dsize
pot.mom{i} = cpot_to_mpot(pot.can{i});
end
pot.subtype = 'm';
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -