distributionnetwork-power2c.../func_deltF.m

8 lines
135 B
Matlab

function deltF=func_deltF(SEPD,ContrlCount)
t=sparse(ones(length(SEPD),1));
deltF=[
t;
sparse(ContrlCount-length(t),1);
];
end