Clear Filters
Clear Filters

How to save and crossing process of multiple sequence file?

1 view (last 30 days)

suppose I have two files (attached). I plan to do cross math operation, for instance: the first column of A file multiply with the third column of B file.How to do that? Here the script I used (in this script, I can only process different column of the same file).

    for i = 1:2
    id = i;
    str_id = num2str(id,'%4.1i');
    ts = load(['old_',str_id,'.txt']);
    x=ts(:,1)
    y=ts(:,2)
    z=ts(:,3)+ts(:,2)
    b = [x y z] 
  end
save('new_',num2str(i),'.txt','b','-ascii')

Then, when I try to save it as new sequence file, it only saves the last file (new_2). Thank you for your help

Accepted Answer

Etsuo Maeda
Etsuo Maeda on 23 Apr 2018
I am not sure what you want to do.
Anyway, your code just make an error in the save command.
save('new_',num2str(i),'.txt','b','-ascii')
should be
save(['new_',num2str(i),'.txt'],'b','-ascii')
And also, if you want to get new_1.txt and new_2.txt, the save command should be included in the for loop
for i = 1:2
id = i;
str_id = num2str(id,'%4.1i');
ts = load(['old_',str_id,'.txt']);
x=ts(:,1)
y=ts(:,2)
z=ts(:,3)+ts(:,2)
b = [x y z]
save(['new_',num2str(i),'.txt'],'b','-ascii')
end
MATLAB tutorials will help you to understand this problem.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!