.txt string file loading problem

조회 수: 1 (최근 30일)
Muhammad
Muhammad 2014년 3월 31일
편집: Jeff Johnson 2014년 4월 2일
Hi, I have a text file with 5 columns and 73 rows, and I creat this file from .xlsx format in excel. Now when I load this file with;
a = importdata('Input.txt')
this file is load in only 1 column instead for 5 columns, and the dimension of my my variable a is equal to 73*1. I separate the the input strings with tab and 8 spaces with nothing work for me.
Please guide me, I am new to MATLAB. Thanks in advanced.

채택된 답변

Jeff Johnson
Jeff Johnson 2014년 4월 2일
편집: Jeff Johnson 2014년 4월 2일
It looks like you need to add a delimiter argument to your function call. From the help documentation for importdata:
importdata(FILENAME, DELIM) interprets DELIM as the column separator in
ASCII file FILENAME. DELIM must be a string. Use '\t' for tab.
If your data is tab-separated, try
a = importdata('Input.txt','\t')
In the future, you can find the help documentation for any function by typing
help functionName

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by