MATLAB: How do i define the 2 variables in a 16×2 matrix

data importMATLAB

I have a 16×2 matrix and i want to define/make a varible called light and a varible called C

Best Answer

syms light C
A=sym(zeros(16,2));
A(:,1)=light;
A(:,2)=C;