%% tic clear a = zeros(2000,2000); for ii = 1:size(a,1); for jj = 1:size(a,2); a(ii,jj) = ii + jj; end end toc 时间已过 0.084059 秒。 %% tic clear for ii = 1:2000; for jj = 1:2000; a(ii,jj) = ii + jj; end end toc 时间已过 5.491574 秒。
预先声明内存耗时非常少(具体看内存使用情况)
tic toc用来在代码块中计时
;的作用是:是否显示在命令行
10.
1 2 3 4
clear 清除所有变量内存,每次执行脚本最好清除 clear xx 清除变量xx close all 关闭所有图形 ctrl + c 在命令行强行终止程序
x = input("Temperature in C:"); while x; fprintf("Temperature in C = %f\n",temperature(x)); x = input("Temperature in C:"); ifisempty(x) break; end end