How do i calculate the sum of each row

1 vue (au cours des 30 derniers jours)
Lou
Lou le 31 Juil 2021
Réponse apportée : dpb le 31 Juil 2021
fid = fopen('studentmarks.txt', 'r')
if fid == -1
disp('Error, check file name')
else
T = textscan(fid,'%s %s %f %f %f %f %f %f %f %f')
end
fclose(fid)

Réponse acceptée

dpb
dpb le 31 Juil 2021
I'd suggest to use readtable instead, first...
T = readtable('studentmarks.txt');
T.TotalMarks=sum(T{:,3:end},2);
presuming the above format string is correct for the file content.
Without a header line in the file, the default variable names will be Var1 through VarN, you can make use of meaningful names by assigning them in T.Properties.VariableNames.
See the doc on the table class for all the syntax...
The Q? answer specifically is to use sum() with the second optional input argument to tell it to sum rows instead of columns.

Plus de réponses (0)

Catégories

En savoir plus sur Text Data Preparation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by