Azzera filtri
Azzera filtri

Changing portions of variable names

1 visualizzazione (ultimi 30 giorni)
Noah Wilson
Noah Wilson il 1 Lug 2019
Modificato: Stephen23 il 1 Lug 2019
This may be a very simple question but I have been struggling with it for a bit and would appreciate the help.
rawdatafile = dir('*.csv');
rawdata = rawdatafile.name;
RawDataMatrix = csvread(rawdata, 13,0);
dlmwrite( strcat(rawdata,'.dat'), RawDataMatrix)
I have some code that finds a .csv file and imports it then deletes the first 13 rows and I am wanting to save the matrix as the same filename except instead of .csv I want to save it as .dat. The current code I have above saves it as filename.csv.dat so I am wondering how to get rid of the '.csv' portion before I save it. Thanks for the help!

Risposta accettata

Stephen23
Stephen23 il 1 Lug 2019
Modificato: Stephen23 il 1 Lug 2019
Use this as the new filename:
strrep(rawdata,'.csv','.dat')
Or more robustly:
[~,fnm] = fileparts(rawdata);
sprintf('%s.dat',fnm)

Più risposte (0)

Categorie

Scopri di più su Data Import and Export in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by