Length of variables lets call n which will create x{i]..to x{n} different variables Now i can create those but i want all individual to have sin function with different values. Let say t=0:1:5; length(t)=6 thus sin(t) will be matrice with length 6. i tried a code below of course i should update the cell functions length but How can i make; x{1}=sin(t),x{2}=sin(t) etc.All variables will have their own matrices.Whats your suggestions?
for i=1:n
for t=0:1:5;
x=cell(1);
x{i} = sin(t)
end
end
x = repmat({sin(t)},n,1)- Divakar