copy vps/rdp submission.csv file in matlab

To copy a file in Matlab, you can use the copyfile function. Here's the syntax for copying a file in Matlab:

main.m
copyfile(source_file, destination_path)
40 chars
2 lines

where source_file is the name of the file you want to copy, and destination_path is the path of the directory where you want to copy the file.

So, to copy the submission.csv file from a VPS/RDP to your local machine in Matlab, you can use the following code:

main.m
source_file = '/path/to/vps/submission.csv';
destination_path = '/path/to/local/directory/';

copyfile(source_file, destination_path);
135 chars
5 lines

This will copy the submission.csv file from the specified VPS/RDP directory to the specified local directory. You can then use the readcsv function to read the contents of the file into a Matlab array for further processing.

gistlibby LogSnag