From: Magnus Croneborg on
Hi!
I would like to create a uitable with two 10x1 matrices but when I try to use the code below it says it has to be a [1 1] array what Im I doing wrong?
Thanks for your help

JALPHA=[JALPHA]' %10x1 matrix
IALPHA=[IALPHA]' %10x1 matrix

f = figure('Position', [100 100 752 350]);
t = uitable('Parent', f, 'Position', [25 25 700 200]);
data={JALPHA, IALPHA};
set(t,'Data',data)