reading from txt file and using repmat for single column of the matrix

조회 수: 2 (최근 30일)
Ram
Ram 2011년 8월 24일
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.

답변 (2개)

Ram
Ram 2011년 8월 24일
I have been able to read the file (not using Uigetfile) but hardcoded in the fopen command. Once i read the file and when using repmat I am not able to replicate the column B, but instead the 2nd datapoint gets replicated.

Walter Roberson
Walter Roberson 2011년 8월 24일
YourData(:,3:11) = repmat(YourData(:,2),1,10));

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by