I have this .text in notepad:
data _ electrical _ material_Graphic
x y
0 0,00
10 0,05
20 0,13
23 0,15
25 0,17
And I need to create an Matrix with only two columns with the values of x and y. I try with "importdata", but this command created me only one column. *Another problem is to change the commas by points
Thaks for you answer

댓글 수: 1

Stephen23
Stephen23 2017년 4월 16일
편집: Stephen23 2017년 4월 16일
Search this forum for "decimal comma" and you will find many solutions, discussions, and ideas:
I used the big "Search Answers" field in the top right-hand corner of this page. That "Search" feature lets me and you search this forum for answers. It is easy to use: just write some relevant terms in the box and click the magnifying glass button. You can also search this forum using your favorite internet search engine.

댓글을 달려면 로그인하십시오.

 채택된 답변

Star Strider
Star Strider 2017년 4월 16일

0 개 추천

MATLAB is not going to recognise the comma decimal separator. One approach is in troubles to load .txt-file in matlab (link).
Change the format specifier in the textscan call to:
dscc = textscan(fidi, '%f%s', 'Delimiter',' ', 'CollectOutput',1);
or whatever works for your file. Experiment to get the result you want.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

질문:

2017년 4월 16일

답변:

2017년 4월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by