Dot indexing is not supported for variables of this type.

조회 수: 4 (최근 30일)
Özgür Alaydin
Özgür Alaydin 2020년 10월 2일
댓글: Özgür Alaydin 2020년 10월 5일
I have a csv file. in the function, this file should be read and then processed.
But i get error 'Dot indexing is not supported for variables of this type.'
How can i solve this? I attached my csv file.
Thnaks
  댓글 수: 3
Utkarsh Belwal
Utkarsh Belwal 2020년 10월 5일
I think that you are using the dot(.) operator instead of a multiplication operator(*). Please share your code if this doesn't resolve the error.
Walter Roberson
Walter Roberson 2020년 10월 5일
There is text part way through the file. If you were not sufficiently careful in reading it you might have ended up with an empty variable where you expect a struct.

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

채택된 답변

Luciano Garim
Luciano Garim 2020년 10월 5일
Hi, Özgür Alaydin.
To fix your problem you may transform your csv data in matrix. This way, you can make any mathematical operation.
a = fopen('filename.csv');
b = textscan(a, '%s %s %s %s', 'delimiter', ',', 'CollectOutput',true);
I hope I helped you!
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 10월 5일
That would be a bit strange.
Lines 1 and 503 of the input file contain text. Lines 2 to 501 and 504 to 1003 contain two numeric values per line.
When you use the above code to read the file, you will get results like
{'wl' } {'n' } {0×0 char} {0×0 char}
{'2.0664e-01'} {'1.0648e+00'} {0×0 char} {0×0 char}
{'2.0705e-01'} {'1.0667e+00'} {0×0 char} {0×0 char}
{'2.0746e-01'} {'1.0686e+00'} {0×0 char} {0×0 char}
and eventually
{'1.2398e+01'} {'3.1390e+00'} {0×0 char} {0×0 char}
{'wl' } {'k' } {0×0 char} {0×0 char}
{'2.0664e-01'} {'2.2263e+00'} {0×0 char} {0×0 char}
{'2.0705e-01'} {'2.2310e+00'} {0×0 char} {0×0 char}
This would not be well suited for numeric processing.
If you are going to read the data as text you might as well use fileread() and techniques such as regexp() to parse the text.
Özgür Alaydin
Özgür Alaydin 2020년 10월 5일
Thanks for answer, i solved problem.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by