test_preallocate.m
来自「matlab programming for engineers(2nd)书籍源」· M 代码 · 共 34 行
M
34 行
% Script file: test_preallocate.m
%
% Purpose:
% This program tests the creation of cell arrays with and
% without preallocation.
%
% Record of revisions:
% Date Programmer Description of change
% ==== ========== =====================
% 03/04/07 S. J. Chapman Original code
%
% Define variables:
% a -- Cell array
% maxvals -- Maximum values in cell array
% Create array without preallocation
clear all
maxvals = 50000;
tic
for ii = 1:maxvals
a{ii} = ['Element ' int2str(ii)];
end
disp( ['Elapsed time without preallocation = ' num2str(toc)] );
% Create array with preallocation
clear all
maxvals = 50000;
tic
a = cell(1,maxvals);
for ii = 1:maxvals
a{ii} = ['Element ' int2str(ii)];
end
disp( ['Elapsed time with preallocation = ' num2str(toc)] );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?