findacccard.m

来自「UMDA. a kind of estimation of distributi」· M 代码 · 共 9 行

M
9
字号
function [AccCard] = FindAccCard(length,Card)% Finds the accumulative cardinality of each variable in num. This is the product of cardinalities of previous % variables, where the first variable is  the one to left. AccCard(length) = 1;for i=length-1:-1:1    AccCard(i)=AccCard(i+1)*Card(i+1); end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?