displaying result using lines
3 views (last 30 days)
Show older comments
I have values as
ans =
'YPL245W' d
'YOL083W' 'uu'
'YOL107W' 'uu'
'YOR131C' 'uu'
ans =
'YPL245W' d
'YOL083W' 'uu'
'YOL107W' 'uu'
'YOR131C' 'uu'
Is it possible ti display as
ans =
'YPL245W' d -------->
'YOL083W' 'uu'
'YOL107W' 'uu'
'YOR131C' 'uu'
ans =
'YPL245W' d -------->
'YOL083W' 'uu'
'YOL107W' 'uu'
'YOR131C' 'uu'
I want to draw------>in first row
please help
0 Comments
Accepted Answer
Azzi Abdelmalek
on 7 Sep 2012
Edited: Azzi Abdelmalek
on 7 Sep 2012
for k=1:numel(gene) %gene your cell array
A=gene{k};A{1,end}=[A{1,end} ' -------->'];
result{k}=A
end
result{:}
0 Comments
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!