?? 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 + -