📄 upot.m
字号:
function pot = upot(domain, sizes, p, u)% UPOT Make a discrete utility potential.% pot = upot(domain, sizes, p, u)%% sizes(i) is the size of the i'th domain element.% p defaults to all 1s, u defaults to all 0s.if nargin < 3, p = myones(sizes); endif nargin < 4, u = 0*myones(sizes); endpot.domain = domain;pot.p = myreshape(p, sizes);pot.u = myreshape(u, sizes);pot.sizes = sizes(:)';pot = class(pot, 'upot');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -