disp('') % Does nothing but allows developer to set a breakpoint here.
Matlab编辑器具备代码智能缩进功能,Ctrl_A + Ctrl_I

clc;clear vars;close all;
x = [1 2 3]';
y = [4 5 6]';
tb_1 = table(x,y,'VariableNames',{'x','y'});
tb_2 = array2table(x);
tb_3 = table();
tb_3.y = y;
tb_1
tb_2
tb_3

