reading from txt file and using repmat for single column of the matrix
Ältere Kommentare anzeigen
I have a dataset that has columns A and B separated by tab. I need to do the following: 1. Read the txt file using Uigetfile. 2. Remove the first 4 lines and last 10 lines from the dataset. 3. Repmat column 2, 10 times so that the new dataset will have 11 columns. 4. Write the new dataset into a file.
thanks for inputs.
1 Kommentar
Jan
am 24 Aug. 2011
What have you done so far?
Antworten (2)
Ram
am 24 Aug. 2011
0 Stimmen
Walter Roberson
am 24 Aug. 2011
YourData(:,3:11) = repmat(YourData(:,2),1,10));
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!