Bonjour,
Je voudrais sommer 300 matrices chacune contenue dans un fichier txt.
(nommés " mat1.txt ", " mat2.txt ", etc)
Comment puis-je sommer ces matrices avec R ??
j'ai ce code très simple :
for (i in 1:300) {
mat_sum = read.table('mat1.txt');
}
Pourriez-vous m'aider ? Où dois-je faire intervenir la variable i dedans ?
Merci bien !
-----