1 Star 2 Fork 0

JeffreyChan / mpc

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
computeAbar.m 201 Bytes
Copy Edit Raw Blame History
Colin Calas authored 2017-08-25 14:23 . first commit
function Abar = computeAbar(A, ny)
Abar_tmp = cell(ny,1);
tmp = A;
for i=1:ny
Abar_tmp{i,1} = tmp;
tmp = tmp*A;
end
Abar = cell2mat(Abar_tmp);
end
Matlab
1
https://gitee.com/jeffreychan/mpc.git
git@gitee.com:jeffreychan/mpc.git
jeffreychan
mpc
mpc
master

Search