Translation from Matlab to R with system (sprintf ())

2

I'm trying to translate the following matlab code into the R:

clear all
nsta = [1,2,3];
npx  = [2,3,4,5];
npu  = [2,3,4,5];
nmax = 2500;
nome = 'MODEL1b';
system(sprintf('del %s.log',nome));
nfiles = 0;
for k = 1:length(nsta)
    for i = 1:length(npx)
        for j = 1:length(npu)
            nx = nsta(k);
            npar = (npx(i)^nx)*npu(j);
            if (npar < nmax)
                nfiles = nfiles+1;
                system(sprintf('copy %s%d%d%d.txt  %s.txt',nome,nx,npx(i),npu(j),nome));
                system(sprintf('copy input%d%d%d.txt  input.txt',nx,npx(i),npu(j)));
                system(sprintf('copy template%d%d%d.txt template.txt',nx,npx(i),npu(j)));
                tic;
                system(sprintf('RFuzzy %s',nome));
                time = toc;
                fprintf('Arquivo: %d    Config: %d%d%d    Time: %f',nfiles,nx,npx(i),npu(j),toc);
                system(sprintf('copy min.txt min%d%d%d.txt',nx,npx(i),npu(j)));
            end
        end
    end
end

I tried the following code:

rm(list = ls())
nsta <- c(1,2,3)
npx <- c(2,3,4,5)
npu <- c(2,3,4,5)
nmax <- 2500
nome <- "MODEL1b"
system(sprintf('del %s.log', nome))
nfiles <- 0
for(k in 1:length(nsta)){
  for(i in 2:length(npx)){
    for(j in 2:length(npu)){
      nx <- nsta[k]
      npar <- (npx[i]^nx)*npu[j]
      if(npar < nmax){
        nfiles <- nfiles + 1
        system(sprintf('copy %s%d%d%d.txt  %s.txt',nome,nx,npx[i],npu[j],nome))
        system(sprintf('copy input%d%d%d.txt  input.txt',nx,npx[i],npu[j]))
        system(sprintf('copy template%d%d%d.txt template.txt',nx,npx[i],npu[j]))
        system(sprintf('RFuzzy %s',nome))
        fprintf('Arquivo: %d    Config: %d%d%d    Time: %f',nfiles,nx,npx[i],npu[j])
        system(sprintf('copy min.txt min%d%d%d.txt',nx,npx[i],npu[j]))
      }
    }
  }
}

In the seventh line, the error appears:

Warning message:
running command 'del MODEL1b.log' had status 127

How to proceed?

    
asked by anonymous 21.05.2017 / 18:05

1 answer

0

Try:

rm(list = ls())
nsta <- c(1, 2, 3)
npx <- c(2, 3, 4, 5)
npu <- c(2, 3, 4, 5)
nmax <- 2500
nome <- "MODEL1b"
file.remove(sprintf('%s.log', nome))
nfiles <- 0

for(k in 1:length(nsta)){
     for(i in 2:length(npx)){
         for(j in 2:length(npu)){
         nx <- nsta[k]
         npar <- (npx[i]^nx)*npu[j]
         if(npar < nmax){
             nfiles <- nfiles + 1
             file.copy(from = sprintf('%s%d%d%d.txt', nome, nx, npx[i], npu[j]), to = sprintf('%s.txt', nome))
             file.copy(from = sprintf('input%d%d%d.txt', nx, npx[i], npu[j]), to = 'input.txt')
             file.copy(from = sprintf('template%d%d%d.txt', nx, npx[i], npu[j]), to = 'template.txt')
             system(sprintf('RFuzzy %s', nome)) # Provavelmente aqui vai dar erro. Mas pelo menos ganhamos algumas linhas :)
             cat(sprintf('Arquivo: %d Config: %d%d%d Time: %f', nfiles, nx, npx[i], npu[j])
             file.copy(from = 'min.txt', to = sprintf('min%d%d%d.txt', nx, npx[i], npu[j]))
             }
         }
     }
}
    
13.06.2017 / 22:10