matlab里怎样输出高次运算的时间
for s=0:1if(s==0)
B=input('please input the matrix B=');
else
C=input('please input the matrix C=');
end
end
if(length(B(1,:))~=length(C(:,1)))
fprintf('矩阵B的列数与矩阵C的行数必须相同,请重新输入B与C\n');
pause;
end
m=length(B(:,1));
n=length(C(1,:));
for i=1:m
s=0;
for j=1:n
s=0;
for k=1:length(C(:,1))
s=s+B(i,k)*C(k,j);
D(i,j)=s;
end
end
end
fprintf('B*C=');
D
上面这个程序是矩阵乘法的运算程序,我要它运行100万次,并且要输出运行时间,该怎么样添加代码???大虾们帮忙啊,急!!!!!