How do i define my 2 variables in a 16x2 matrix

2 views (last 30 days)
I have a 16x2 matrix and i want to define/make a varible called light and a varible called C

Accepted Answer

Birdman
Birdman on 9 Nov 2017
syms light C
A=sym(zeros(16,2));
A(:,1)=light;
A(:,2)=C;

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!