Can you help me with xlswrite?

2 次查看(过去 30 天)
>> n=10;
for k=1:n;
exp_tmp=['DNA',num2str(k),'=randseq(20);'];
eval(exp_tmp);
xlswrite('C:\Users\BFSL\Desktop\1.xlsx',[strcat('DNA',num2str(k))],strcat('A',num2str(k),:,'B',num2str(k)));
end
I want to make...
1. generate random DNA -> 2. save in excel like this(image below);
but reality is... (below)
can someone help me?
+generating is success

采纳的回答

KSSV
KSSV 2017-3-6
编辑:KSSV 2017-3-6
clc; clear all ;
n=10;
exp_tmp = cell(n,2) ;
for k=1:n;
% exp_tmp{k}=['DNA',num2str(k),'=randseq(20);'];
% exp_tmp{k}=['DNA',num2str(k),' generated sequence',num2str(k)] ;
exp_tmp{k}=['DNA',num2str(k),' ',randseq(20)] ;
% eval(exp_tmp);
% xlswrite('C:\Users\BFSL\Desktop\1.xlsx',[strcat('DNA',num2str(k))],strcat('A',num2str(k),:,'B',num2str(k)));
end
xlswrite('DB.xls',exp_tmp) ;
  4 个评论
Kyungsun Ha
Kyungsun Ha 2017-3-6
randseq is function.. (randomly generate DNA sequence)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by