0
点赞
收藏
分享

微信扫一扫

MATLAB求时间

青鸾惊鸿 2022-07-12 阅读 80
tic
A =zeros(100,100);
for i = 1:1:100
for j = 1:1:100
A(i,j) = i;
end
end
toc


举报

相关推荐

0 条评论