www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/ConvertInMemoryArrayToTallArrayExample.m

    %% Convert In-Memory Array to Tall Array
% Create an in-memory array of random numbers, and then convert it into a
% tall array. Creating tall arrays from in-memory arrays is useful for
% debugging or prototyping new programs.
A = rand(100,4);
tA = tall(A)