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

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 6 Sep 2012
Modifié(e) : Azzi Abdelmalek le 6 Sep 2012
for k=1:numel(gene)
disp(sprintf('%d=',k))
disp(gene{k})
end
%or
eval(['[a1' sprintf(',a%d',2:numel(gene)) ']=gene{:}'])

2 commentaires

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
Azzi Abdelmalek
Azzi Abdelmalek le 6 Sep 2012
check the updated code

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by