-
Antoine Cyril David Hoffmann authoredAntoine Cyril David Hoffmann authored
load_marconi.m 414 B
function [ RESDIR ] = load_marconi( outfilename )
%UNTITLED2 Summary of this function goes here
% Detailed explanation goes here
hostfolder = outfilename(1:end-8);
hostfile = [hostfolder,'/out*'];
RESDIR = ['../',outfilename(46:end-8),'/'];
localfolder = [RESDIR,'.'];
CMD = ['scp -r ahoffman@login.marconi.cineca.it:',hostfile,' ',localfolder];
disp(CMD);
system(CMD);
end