Displaying result in command window

i gave gene{:} i got result as
ans =
'YPL245W' 'dd' 'du'
'YOL083W' 'uu' 'dd'
'YOL107W' 'uu' 'uu'
'YOR131C' 'uu' 'dd'
ans =
'YPL245W' 'dd' 'dd'
'YOL083W' 'uu' 'uu'
'YOL107W' 'uu' 'ud'
'YOR131C' 'uu' 'ud'
instead of ans can i get answer as
1=
'YPL245W' 'dd' 'du'
'YOL083W' 'uu' 'dd'
'YOL107W' 'uu' 'uu'
'YOR131C' 'uu' 'dd'
2=
'YPL245W' 'dd' 'dd'
'YOL083W' 'uu' 'uu'
'YOL107W' 'uu' 'ud'
'YOR131C' 'uu' 'ud'
please help

 Accepted Answer

for k=1:numel(gene)
disp(sprintf('%d=',k))
disp(gene{k})
end
%or
eval(['[a1' sprintf(',a%d',2:numel(gene)) ']=gene{:}'])

2 Comments

Azzi but it is not working for more than two for example
gene =
{4x3 cell}
{3x3 cell}
{3x3 cell}
i have nearly 800 bales like this ,please help
check the updated code

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!