createfibbinitconf.m
来自「UMDA. a kind of estimation of distributi」· M 代码 · 共 12 行
M
12 行
function[Sj] = CreateFibbInitConf(n)%Translates the vector to the positions in the gridSi = [1];Sj = [0];for i=2:n aux = Sj; Sj = [Si,Sj]; Si = aux;end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?