Sum of Rows
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have the below sample of txt file:
Stock Date Time Price Volume Stock Category Trade
ETE 04/01/2010 10145959 18.31 500 Big Cap 1
ETE 04/01/2010 10150000 18.01 70 Big Cap 0
ABC 04/01/2010 10190000 18.34 200 Big Cap 1
YYY 04/01/2010 10200000 18.34 100 Big Cap 1
ETE 04/01/2010 10170000 18.54 430 Big Cap 1
How can I calculate the sum of the seventh column (trade) only for rows with value 'ETE' in column one?
Many thanks in advance
Panos
0 commentaires
Réponse acceptée
Matt Fig
le 2 Mai 2011
I simply copied and pasted your data into a textfile I named stock_prices.txt, then:
% Retrieve the data...
fid = fopen('stock_prices.txt');
T = textscan(fid,'%s %10s %n %n %n %s %s %n','headerlines',1);
fclose(fid);
% Now that we have the data, do our math...
idx = cellfun(@(x) isequal(x,'ETE'),T{1});
S = sum(T{end}(idx)) % Sum last column, only rows in idx...
S =
2
7 commentaires
Matt Fig
le 4 Mai 2011
Here is how to do it, given how you are reading the data:
fid = fopen('stock_prices.txt');
% T = textscan(fid,'%s %10s %n %n %n %s %s %n','headerlines',1);
T = textscan(fid,'%s%s%s%s%s%[^\n]','headerlines',1);
fclose(fid);
% Now that we have the data, do our math...
idx = cellfun(@(x) isequal(x,'ETE'),T{1});
valx = str2num(cellfun(@(x) x(end),T{end}));
S = sum(valx(idx)) % Sum last column, only rows in idx...
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!